@font-face {
  font-family: 'BHITC';
  src: url('BradleyHandITC.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

*{margin: 0px; padding: 0px; font-family:  'Barlow', sans-serif;}
.calender-section{background-color: #2200d5;padding-top:25px;padding-bottom:25px;
width: 100%;text-align: center;}

.new_wrapper{
    max-width:1440px;
    width:95%;
    margin-left:auto;
    margin-right:auto;
}


.invert-bg{
    background-color:#fff;
    padding:20px;
    margin-top:10px;
    margin-bottom:10px;
    border-radius:5px;
    box-sizing: border-box;
}

footer a{
    color:white;
    text-decoration:none;
}

body {
    margin: 0;
    padding: 0;
}
h4{
        font-size: 1.5em;
    padding-bottom: 10px;
}
h5{
    font-size: 1.3em;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mp-box{
    padding: 15px;
    font-size: 1.1em;
}
.catah6{
    font-weight: 300;
    font-size: 1em;
    padding: 5px;
}
.marker {
  position: relative;
  background-image: url('../img/icon.png');
  background-size: cover;
  width: 50px;
  height: 40px;
  cursor: pointer;
}

.marker div {
      position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-weight: normal;
  color: black;
  font-size: 1.35em;
  /* margin-bottom: 10px; */
  /* padding-bottom: 10px; */
  margin-top: 4px;
}
.h_img{
    color: blue;
}

.logout-btn{
    padding: 10px;
    border-radius: 3px;
    background-color: red;
    color:white;
    transition: all 0.3s ease;
    cursor: pointer;
    
}
.logout-btn:hover{
    background-color: rebeccapurple;
}
/* ── Hero overlay ────────────────────────────────────────────────────────── */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    align-items: flex-start;
    padding: 22px 28px;
    box-sizing: border-box;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-overlay.faded {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none !important;
}

/* Ensure all children are also non-interactive when faded */
.hero-overlay.faded * {
    pointer-events: none !important;
}

.hero-overlay__socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

.hero-overlay__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-overlay__socials a:hover {
    background: #fff;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

.hero-overlay__logo {
    flex: 1;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.hero-overlay__logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.22));
}

.hero-overlay__actions {
    pointer-events: auto;
    display: flex;
    align-items: center;
}

.hero-menu-btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    color: #222;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-menu-btn:hover {
    background: #fff;
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .hero-overlay {
        padding: 16px 18px;
    }
    .hero-overlay__logo img {
        height: 110px;
    }
    .hero-overlay__socials a,
    .hero-menu-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/* ── Spacer beneath fixed nav on non-hero pages ──────────────────────────── */
.nav-spacer {
    display: block;
    height: 64px;
    width: 100%;
}

/* ── Compact nav: hidden by default, slides in on scroll ─────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 64px;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    gap: 16px;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    box-sizing: border-box;
}

nav.nav-visible {
    transform: translateY(0);
    opacity: 1;
}

.social-icons {
    display: flex;
    align-items: center;
    /* Uncomment the line below if you want to justify the icons at the center of the container
    justify-content: center; */
    /* You can also add specific styles for this container */
}


/* Compact nav logo — use nav .logo for specificity to beat old media query rules */
nav .logo {
    display: flex;
    align-items: center;
    height: 40px;
    flex-shrink: 0;
    margin-right: auto;
    overflow: hidden;
}

nav .logo .logo_img {
    height: 100%;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Nav search — styles now in the hero/nav search CSS block below */

.nav-actions {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.menu-btn,
.menu-btn-close {
    cursor: pointer;
    background-color: #20232D;
    border-radius: 50%;
    color: #fff;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.menu-btn:hover,
.menu-btn-close:hover {
    background-color: #3a3d4a;
}

.menu-btn-close {
    display: none;
}
.menu {
    position: fixed;
    top: 70px;
    right: 26px;
    display: flex;
    flex-direction: column;
    transform: scaleY(0);
    transform-origin: top right;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    color: #333;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    width: 215px;
    font-size: 15px;
    z-index: 2000;
}
.man-da-boom{
    display:none;
}
.man-da-boom.active{
    display:block;
}
.menu a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s ease;
    padding: 10px 12px;
    border-radius: 8px;
    margin: 1px 0;
}
.menu a:hover {
    background-color: #f5f5f5;
    color: #3685B4;
}
.menu a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.become-a-homeowner-button {
    background: #3685B4 !important;
    color: #fff !important;
}
.become-a-homeowner-button:hover {
    background: #245471 !important;
}
.logout-btnn {
    margin: 2px 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: #e53935;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease;
    font-family: 'Barlow', sans-serif;
}
.logout-btnn:hover {
    background: #b71c1c;
}
.menu-open {
    transform: scaleY(1);
}




header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../img/header-img.png) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header h1{
    text-align: center;
    font-size: 3em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'BHITC';
    color: #fff;
    
}

header p{
    text-align: center;
    font-size: 2em;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    color: white;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FLATPICKR CUSTOM THEME
   ═══════════════════════════════════════════════════════════════════════════ */

.flatpickr-calendar {
    border-radius: 18px !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.16) !important;
    border: none !important;
    font-family: 'Barlow', sans-serif !important;
    overflow: hidden;
}

.flatpickr-months .flatpickr-month {
    background: #fff !important;
    color: #111 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #3685B4 !important;
    fill: #3685B4 !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #1d5a8a !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: 'Barlow', sans-serif !important;
    font-weight: 600 !important;
}

.flatpickr-weekday {
    color: #888 !important;
    font-weight: 600 !important;
    font-size: 11px !important;
}

.flatpickr-day {
    border-radius: 50% !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
}

.flatpickr-day.today {
    border-color: #3685B4 !important;
    color: #3685B4 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #3685B4 !important;
    border-color: #3685B4 !important;
    color: #fff !important;
}

.flatpickr-day.inRange {
    background: rgba(54, 133, 180, 0.12) !important;
    border-color: transparent !important;
    color: #333 !important;
    border-radius: 0 !important;
    box-shadow: -5px 0 0 rgba(54, 133, 180, 0.12), 5px 0 0 rgba(54, 133, 180, 0.12) !important;
}

.flatpickr-day.startRange { border-radius: 50% 0 0 50% !important; }
.flatpickr-day.endRange   { border-radius: 0 50% 50% 0 !important; }
.flatpickr-day.startRange.endRange { border-radius: 50% !important; }

.flatpickr-day:hover:not(.selected):not(.startRange):not(.endRange) {
    background: #f0f7ff !important;
    border-color: #3685B4 !important;
    color: #3685B4 !important;
}

.flatpickr-day.flatpickr-disabled {
    color: #ccc !important;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SEARCH BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.holiday-search-container {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 980px;
    background: #fff;
    border-radius: 999px;
    box-shadow:
        0 2px 8px  rgba(0, 0, 0, 0.06),
        0 10px 32px rgba(0, 0, 0, 0.14),
        0 28px 64px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 10;
    overflow: visible;
}

/* ── Form row ── */
.search-form {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 6px 6px 6px 0;
}

/* ── Individual field ── */
.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
    min-width: 0;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.15s ease;
    position: relative;
}

.search-field:hover,
.search-field:focus-within {
    background: rgba(0, 0, 0, 0.05);
}

.search-field label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #111;
    margin-bottom: 3px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.search-field label i {
    color: #3685B4;
    font-size: 9px;
}

.search-field input[type="text"] {
    border: none;
    outline: none;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    background: transparent;
    padding: 0;
    width: 100%;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
}

.search-field input[type="text"]::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

/* field highlight on error */
.search-field.error {
    background: rgba(220, 53, 69, 0.06);
    border-radius: 999px;
}
.search-field.error label {
    color: #c0392b;
}

/* ── Vertical divider ── */
.search-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* ── Pill edge padding — first & last fields ── */
.search-field[data-field="where"]   { padding-left: 28px; }
.search-field--guests               { padding-right: 4px; }

/* ── Guests field ── */
.search-field--guests {
    cursor: pointer;
    user-select: none;
    flex: 0 0 155px;
}

.guest-display {
    font-size: 13.5px;
    font-weight: 500;
    color: #b0b0b0;
    transition: color 0.2s;
}

.guest-display.has-guests { color: #333; }

/* ── Search button — rounded pill ── */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #3685B4 0%, #1a508a 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    height: 52px;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 6px 0 6px;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 4px 16px rgba(26, 80, 138, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.search-btn i { font-size: 14px; }

.search-btn:hover {
    background: linear-gradient(135deg, #2a72a8 0%, #14406e 100%);
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(26, 80, 138, 0.55);
}

.search-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(26, 80, 138, 0.35);
}

/* ── Guest picker dropdown ── */
.guest-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    width: 300px;
    z-index: 50;
    border: 1px solid rgba(0,0,0,0.06);
}

.guest-dropdown.active {
    display: block;
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(-50%); }
    20%       { transform: translateX(calc(-50% - 8px)); }
    40%       { transform: translateX(calc(-50% + 8px)); }
    60%       { transform: translateX(calc(-50% - 4px)); }
    80%       { transform: translateX(calc(-50% + 4px)); }
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f2f2f2;
}
.guest-row:last-child { border-bottom: none; padding-bottom: 4px; }

.guest-type { font-weight: 600; font-size: 15px; color: #222; }
.guest-sub  { font-size: 13px; color: #888; margin-top: 2px; }

.guest-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
    color: #555;
    flex-shrink: 0;
    font-family: 'Barlow', sans-serif;
}
.counter-btn:hover:not(:disabled) {
    border-color: #3685B4;
    color: #3685B4;
    background: #f0f7ff;
}
.counter-btn:disabled { opacity: 0.28; cursor: default; }

.counter-val {
    font-size: 15px;
    font-weight: 600;
    min-width: 22px;
    text-align: center;
    color: #222;
}

/* ─── RESPONSIVE: pill → stacked card on tablet ──────────────────────────── */
@media (max-width: 800px) {
    .holiday-search-container {
        border-radius: 22px;
        bottom: 16px;
        width: 92%;
        border: none;
    }

    .search-form {
        flex-wrap: wrap;
        padding: 0;
        min-height: auto;
    }

    .search-field {
        border-radius: 0;
        padding: 14px 20px;
    }

    .search-field[data-field="where"] {
        flex: 1 1 100%;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 22px 22px 0 0;
    }

    .search-field[data-field="dates"] {
        flex: 1 1 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-field--guests {
        flex: 1 1 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-divider { display: none; }

    .search-btn {
        flex: 1 1 100%;
        height: 52px;
        border-radius: 0 0 20px 20px;
        margin: 0;
        padding: 0 24px;
        font-size: 16px;
        transform: none !important;
    }

    .guest-dropdown {
        left: 16px;
        right: 16px;
        bottom: auto;
        top: calc(100% + 8px);
        width: auto;
        transform: none;
    }

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

    @keyframes shake {
        0%, 100% { transform: none; }
        20%       { transform: translateX(-8px); }
        40%       { transform: translateX(8px); }
        60%       { transform: translateX(-4px); }
        80%       { transform: translateX(4px); }
    }
}

@media (max-width: 480px) {
    .holiday-search-container { bottom: 12px; width: 95%; }
    .search-field { padding: 12px 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPACT NAV SEARCH BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.nav-search-bar {
    flex: 1;
    max-width: 580px;
    display: flex;
}

.nav-search-form {
    display: flex;
    width: 100%;
    background: #f4f5f6;
    border-radius: 40px;
    border: 1px solid #e8e8e8;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.nav-search-form:focus-within {
    box-shadow: 0 0 0 2px rgba(54, 133, 180, 0.35);
}

/* field wrapper in nav */
.nsf-field {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    min-width: 0;
}

.nsf-field--where { flex: 1; }
.nsf-field--date  { flex: 0 0 auto; }

.nsf-icon {
    color: #3685B4;
    font-size: 11px;
    flex-shrink: 0;
}

.nsf-field input[type="text"],
.nsf-field input[type="date"] {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    font-family: 'Barlow', sans-serif;
    width: 100%;
    min-width: 0;
    padding: 9px 0;
}

.nsf-field input[type="text"]::placeholder { color: #999; }
.nsf-field input[type="date"] { width: 130px; color: #555; cursor: pointer; }

.nav-search-divider {
    display: block;
    width: 1px;
    height: 18px;
    background: #ddd;
    flex-shrink: 0;
}

/* Nav search button */
.nsf-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #3685B4 0%, #1d5a8a 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
    border-radius: 0 40px 40px 0;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.nsf-btn:hover { background: linear-gradient(135deg, #2c71a0 0%, #174d7c 100%); }

/* Flatpickr input inside nav field */
.nsf-field--date input[type="text"] {
    width: 120px;
    cursor: pointer;
}

/* On narrow screens: hide date fields in nav bar, show just location + search */
@media (max-width: 900px) {
    .nsf-field--date,
    .nav-search-divider { display: none; }
    .nsf-btn-text { display: none; }
    .nsf-btn { padding: 9px 14px; border-radius: 0 40px 40px 0; }
}

@media (max-width: 640px) {
    .nav-search-bar { display: none; }
}
.btn-btn{
    width: 250px;
    font-size: 20px;
    background-color: #3685B4;
    border: 0px;
    box-shadow: 0px 4px 4px 0px #00000040;
    font-weight: 400;
    color: white;
    padding: 10px;
    border-radius: 3px;
    transition: 0.3s all ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-btn-right{
    float: right;
    width: fit-content;
}
.btn-btn-center{
    display: block;
    margin: 10px auto;
}
.btn-btn:hover{
    background-color: #245471;
}
/**** CALENDER CSS ****/
#calendar-table {
    border-collapse: collapse;
    width: 100%;
    
  /*border-collapse: separate;*/
  /*border-spacing: 10px 5px;*/
  }
  
  #calendar-table th,
  #calendar-table td {
    border-radius: 5px;
    text-align: center;
    aspect-ratio: 1 / 1;
      box-sizing:border-box;
    display: flex;
  flex: 0 0 50px; /* flex-grow: 0, flex-shrink: 0, flex-basis: 50px */
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #calendar-table tr {
      display:flex;
    justify-content: space-between;
    margin-bottom:5px;
  }
  #calendar-table th {
    background-color: #f3f3f3;
    font-weight: bold;
    align-items: center;
    justify-content: center;
  }
  caption{
    padding: 10px;
    border-radius:5px;
    background-color: #50A3D4;
    margin-bottom:10px;
  }
  #calendar-table td[data-clickable="true"]:hover {
    background-color: #e0e0e0;
  }
  
  #calendar-table td[data-selected="true"] {
    background-color: #3a8dff;
    color: white;
  }
  
  #calendar-table td[data-start-end="true"] {
    background-color: #1c62b9;
    color: white;
  }
  
  #calendar-table td[data-today="true"] {
    font-weight: bold;
  }
  
  .calendar-container {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    max-width:450px;
  }
  

  .prevDay{
    color:grey;
    background: none;
  }
  .avaDay{
    color:black;
    background-color: #fff;
  }
  .currDay{
    color:grey;
    background: none;
    text-decoration: underline;
  }

  .startUnav{
    background-image: url(../img/calender/state_check_in_unav.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
  }
  .endUnav{
    background-image: url(../img/calender/state_check_out_unav.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
  }
  .unav{
    background-color: #FFA1A1;
  }

  .startSelec{
    background-image: url(../img/calender/state_check_in_selected.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
  }
  .endSelec{
    background-image: url(../img/calender/state_check_out_selected.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
  }
  .insideSelec{
    background-color: #57C600;
  }

  .bothSel_check-in{
    background-image: url(../img/calender/both_check_in.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;}
  
  .bothSel_check-out{
    background-image: url(../img/calender/both_check_out.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;}
    .dateSelectionOutput{

    }
    .dateOutputs{
      display: flex;
      
    }
    .dateStartOutput{
    }
    .dateEndOutput{
    }

    .wrapper{
      width: 80%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .calenderDividerContainer{
      display: flex;justify-content: space-between;
      text-align: left;
    }
    .bookingSelectorPanel{
      width: 15%;
    }
    .bookingCalenderPanel{
      width: 80%;
    }
    h2{text-align: left;margin-bottom: 25px;font-size: 2.5em;}
    .bookingSelectorPanel{
    }
    .bookingCalenderPanel{
    }
    h1{}
    h3{
      margin-bottom: 15px;
      margin-top: 15px;
    }
    #OutputArrivalDate{
      margin-right: 50px;
    }
    .optInp{
      width: 15px;
      padding: 5px;
      margin-bottom: 10px;
    }
    .optionInd{
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .optionInd p{
  
    }
    .checkboxCustom{
    -webkit-appearance:none;
    width:20px;
    height:20px;
    background:white;
    border-radius:3px;
    border:1px solid #a0a0a0;
    }
    .checkboxCustom:checked{
      background-color: #57C600;
      border:1px solid #57C600;
    }
#prev-button, #next-button{
  all: unset;
  padding: 10px;
  font-size: 2em;
}
.calenderWrapper{
  display: flex;
  margin-top: 25px;
  gap: 20px;
  align-items: flex-start;
    justify-content: flex-start;
}

.totalOutputs{
  text-align: right;
  font-size: 1.25em;
  font-weight: 300;
  margin-top: 25px;
}

.btnBook{
  padding: 10px 20px;
  border-radius:5px;
  color:white;
  background-color: #2D22AD;
  border:none;
  margin-top:15px;
  font-size: 1.25em;
}
#total-price{
  font-size: 1.3em;
  font-weight: 600;
}


.image-section {
  display: flex;
    justify-content: space-between;
  margin-top: 50px;
  box-sizing:border-box;
    align-items: flex-start;
}

.left-column {
    flex: 0 0 50%;
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.big-image {
    height: 100%;
    border-radius:5px;
    width: 65%;
  object-fit:cover;
}

.small-images {
  display: flex;
  gap: 15px;
  flex-direction: column;
  width: -webkit-fill-available;
  object-fit:cover;
}

.image {
  flex: 1;
  height: 150px;
  border-radius:5px;
    object-fit: cover;
    width: 100%;
}



@media screen and (max-width: 768px) {
    .calenderWrapper{
        flex-direction: column;
    }
    .calendar-container{
        width:100%;
        max-width:500px;
    }
    .bookingSelectorPanel{
        width:33%;
    }
    .bookingCalenderPanel{
        width:60%;
    }
    
    .search-box{
        box-sizing: border-box;
    }
    .search-box h2{
        max-width:150px;
        padding:0px;
        white-space: pre-wrap;
    }
    .search-form{
        
    }
}
@media screen and (max-width: 700px) {
    .calenderDividerContainer{
        flex-direction: column;
    }
    .bookingSelectorPanel{
        width:100%;
    }
    .optionInd{
        width:125px;
    }
    .optionsTabs{
        display:flex;
        gap:25px; 
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .search-box{
        
    flex-direction: column;
    }
}
.right-column {
  flex: 0 0 48%;
  
}

.right-column p{
    margin-bottom: 50px;
}

.subheading {
    color: #0A0077;
    font-size: 1.5em;
    padding: 0px;
    margin: 10px 0px;
}

.heading-two {
  font-size: 4em;
    margin-bottom: 25px;
}
.heading {
  font-size: 4em;
    margin-bottom: 25px;
    padding-left: 50px;
    padding-right: 50px;
}

.boxes {
  display: flex;
    justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(25% - 10px); /* Adjust the width and gap as needed */
  padding: 5px;
  border-radius:5px;
    box-shadow: 0px 0px 8px 0px #00000040;
    width: 115px;
    height: 100px;
    aspect-ratio: 1/1;
    border:solid 2px white;
}

.box img {
  max-width: 100px; /* Adjust the image size as needed */
}

.box p {
  margin-top: 10px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2D22AD;
  color: #fff;
  border-radius:5px;
  border: none;
  font-size: 16px;
  cursor:pointer;
  transition:0.2s ease all;
}
.button:hover {
  background-color: #4539ce;
    box-shadow: 0px 0px 8px 0px #00000040;
  
}
.full_wrapper {
  width: 65%;
  margin: 0 auto; /* Center the wrapper horizontally */
}
.gallery{
    margin-top:50px;
}
.popular{
    /* overridden by .popular rule in homepage section below */
}

.col-3-con{
    display: flex;
    justify-content: space-between;
    
}
.col-3{
    width: 32%;
    max-width: 500px;
    padding: 15px;
}

.col-3:hover{
    background-color: white;
    transition: all ease-in 0.2s;
    border-radius:5px;
    box-shadow: 0px 0px 8px 0px #00000040;
}
.col-3:not(hover){
    background-color: none;
    transition: all ease-in 0.4s;
    
    box-shadow: none;
}
.pop-img{
    width: 100%;
    height: 225px;
    border-radius:5px;
    object-fit: cover;
}
.pop-h3{
    margin: 10px 0px;
}
.pop-location{
    display: flex;
    align-items: flex-end;
    font-size: 17px;
    margin-bottom: 10px;
}
.pop-icon-batch{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.pop-con-left label{
    margin-right: 10px;
    font-size: 1.25em;
}
.pop-btn{
    padding: 10px 20px;
    background-color: #0A0077;
    border-radius:5px;
    color:white;
    float: right;
    text-decoration: none;
    font-size: 1.25em;
}
.text-center{
    text-align: center;
}
h2{
    color:#474747;
}

.showcase{
    padding-top: 75px;
}

.showcase-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.col-2{
    width: 48%;
    margin-bottom:25px;
}


.tag{
    padding: 10px 20px 40px 20px;
    border-radius:5px;
    color: white;
    margin-bottom: -30px;
    width: fit-content;
    font-size: 1.75em;
    font-weight: 700;
    text-align: center;
}
.tag-right{
    margin-left: auto;
}
.tag-blue{
    background-color: #50A3D4;
}
.tag-purple{
    background-color: #972ED8;
}
.con-purple{
    border: 10px solid #972ED8;
}
.con-blue{
    border: 10px solid #50A3D4;
}
.con{
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 29px -11px #7A7A7A;
}
.flex-2{
    display: flex;
}
.col-2-left{
    width: 70%;
    padding:15px;
}
.col-2-right{
    padding: 15px 30px 15px 15px;
    width: -webkit-fill-available;
}
.col-2-right h3{
    font-size: 1.25em;
    margin:0px;
    padding:0px;
    margin-top: 15px;
    
}
.Payment-Options{
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;
    gap:25px
}
.Pay-In-Full{
    border-radius:5px;
    border: 1px solid lightgrey;
    padding:20px;
    font-size:1em;
    font-weight:100;
    transition: 0.2s ease all;
    cursor:pointer;
}
.Pay-Deposit{
    border-radius:5px;
    border: 1px solid lightgrey;
    padding:20px;
    font-size:1em;
    font-weight:100;
    transition: 0.2s ease all;
    cursor:pointer;
}
.Pay-Deposit:hover, .Pay-In-Full:hover{
    box-shadow: 0px 4px 4px 0px #00000040;
}

.pay-method-selected{
    border: 5px solid black;
}
.smallprint{
    padding:5px;
    font-size:9px;
}
.emp{
    margin-top:5px;
    margin-bottom:5px;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.75em;
}
table{
    width: 100%;
}
td{
    padding: 3px;
    font-size: 0.85em;
}
.tb-left{
    width: 25%;
    text-align: right;
    font-size:0.85em;
}
.pop-icon{
    margin-right: 5px;
    width: 17px;
}
.showcase-picture {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    height:150px;
    object-fit:cover;
    border-radius:5px;
    
}

.showcase-picture::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5%;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
    pointer-events: none; /* Ensures the pseudo-element doesn't interfere with interactions */
}
.span-price{
    font-size: 1.75em;
    color: blue;
    font-weight: 700;
}
.con:hover{
    cursor: pointer;
    box-shadow: 0px 0px 29px -11px blue;
}

.filter{
    width: 100%;
    margin-top: 50px;
}
.box-contin{
    display: flex;
    gap: 30px;
    box-sizing: border-box;
    flex-wrap: wrap;
    margin-top:10px;
}
.selectable-box{
    width: 125px;
    height: 125px;
    border-radius:5px;
    background-color: #fff;
    border: 1px solid grey;
    cursor:pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    /*flex-basis: 23%;*/
    transition: all ease-in-out  0.2s;
}
.selectable-box-style-2{
    width: 150px;
    border-radius:5px;
    background-color: #fff;
    border: 1px solid grey;
    cursor:pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all ease-in-out  0.2s;
}
.selectable-box:hover, .selectable-box-style-2:hover{
  background-color: #e2e2e2;
  transition: all ease-in-out  0.2s;
}
.selectable-box:not(hover), .selectable-box-style-2:not(hover){
  background-color: #fff;
  transition: all ease-in-out  0.4s;
}
.selectable-box-style-2 label {
  padding: 10px;
}
.box-contin h4{
  width: 100%;
}
.searchCon {
        }

        .searchCon label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .searchCon input[type="number"],
        .searchCon input[type="checkbox"] {
            padding: 5px;
            border: 1px solid #ccc;
            border-radius: 3px;
            width: 40px;
        }

.updateSearchBtn{
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 1.2em;
    color: white;
}

.searchCon input::-webkit-outer-spin-button,
.searchCon input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.searchCon input[type="number"]{
    padding: 10px;
    width: 75px;
    display: inline-block;
    box-sizing: border-box;
    height: 50px;
    text-align: center;
}
        .searchCon_checkbox {
            display: flex;
            align-items: center;
        }

        .searchCon_checkbox label {
            margin-left: 5px;
        }

        .searchCon_checkbox input[type="checkbox"] {
            margin-right: 5px;
        }
.searchCon_input button{
    width: 50px; height: 50px;
    text-align: center;
    border:0px solid black;
    font-size: 1.5em;
}
/* legacy — kept so any remaining old-style mailing/footer markup doesn't break */
.subscribeForm { display: flex; justify-content: center; padding: 25px; gap: 20px; flex-wrap: wrap; }
.emailListInput { padding: 14px 18px; border-radius: 8px; border: 1px solid #ccc; font-size: 1rem; }
.submitBtn      { padding: 14px 24px; border-radius: 8px; background: #3685B4; color: #fff; border: none; font-weight: 700; cursor: pointer; }
.dual-step-con  { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
.social_icons   { margin-top: 25px; display: flex; gap: 16px; }
.filter-option-1 { margin-top: 35px; }

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.newsletter-section {
    background: linear-gradient(135deg, #1a508a 0%, #3685B4 100%);
    padding: 72px 0;
}
.newsletter-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.7rem;
}
.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.8rem;
    line-height: 1.2;
    text-align: center !important;
}
.newsletter-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin: 0 0 2rem;
}

/* Input row */
.newsletter-form { width: 100%; }
.newsletter-field {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    gap: 8px;
}
.newsletter-field__icon {
    color: #aaa;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.92rem;
    color: #333;
    background: transparent;
    font-family: 'Barlow', sans-serif;
    min-width: 0;
}
.newsletter-input::placeholder { color: #bbb; }
.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #3685B4 0%, #1a508a 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    flex-shrink: 0;
}
.newsletter-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Feedback messages */
.newsletter-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 10px 20px;
}
.newsletter-feedback i { font-size: 1rem; }
.newsletter-feedback--warn { background: rgba(255,200,50,0.2); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer, .site-footer {
    background: #181c28;
    color: rgba(255,255,255,0.75);
    padding: 0;
}
.site-footer .container {
    padding-top: 56px;
    padding-bottom: 0;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}
.footer-tagline {
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
    max-width: 220px;
}
.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.footer-social:hover {
    background: #3685B4;
    color: #fff;
}

/* Column headings */
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #fff;
    margin: 0 0 18px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
}
.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(54,133,180,0.2);
    border-radius: 6px;
    color: #3685B4;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    word-break: break-all;
}
.footer-contact-list a:hover { color: #fff; }

/* Link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-links li a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #3685B4;
    border-radius: 50%;
    flex-shrink: 0;
}
.footer-links li a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom__copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom__links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-bottom__links a:hover { color: #fff; }

/* old col-4 inside footer — keep working */
footer .col-4 { padding: 25px; }
footer .col-4-container { display: flex; gap: 25px; justify-content: space-evenly; flex-wrap: wrap; }
footer h6 { font-size: 1rem; letter-spacing: 0.5px; color: #fff; margin-bottom: 12px; }
footer ul { list-style: none; margin-top: 8px; padding: 0; }
footer ul li { padding: 6px 0; font-size: 0.88rem; }
footer ul li a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer ul li a:hover { color: #fff; }

/* ── Footer responsive ───────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-tagline { max-width: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .newsletter-title { font-size: 1.6rem; }
    .newsletter-field { flex-direction: column; border-radius: 16px; padding: 12px 16px; }
    .newsletter-btn { width: 100%; justify-content: center; }
}

/* ── Newsletter responsive ───────────────────────────────────────────────── */
@media (max-width: 560px) {
    .newsletter-section { padding: 52px 0; }
}

.filter-option-1 { margin-top: 35px; }

.mailingList { /* legacy — replaced by .newsletter-section */ }

.data-collection-container{
    width: 100%;
    display: flex;
}
.split{
    width: 50%;
}
.step-bar {
    width: 100%;
    border-top: 3px solid purple;
    display: flex;
  }
  
  .step {
    border-top: 6px solid white;
    height: 100%;
    transition: border-color 0.3s ease;
    width: calc(99%/3);
    text-align: center;
    padding: 10px;
      cursor: pointer;
  }
  
  .step.active {
    border-color: purple;
  }
  .step-process{
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .sub-page-h1{
    font-size: 2.5em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .center-sub{
    text-align: center;
    width: 80%;
    margin: 0px auto 25px auto;
  }
  .emp-pur{
    color: purple;
  }
  .homeownerapplica{
    padding: 25px;
  }
  .page-2{
    display: none;
  }
  .page-3{
    display: none;
  }
  .data-collection-container-row{
    display: flex;
    margin-bottom: 20px;
  }
  .split{
    padding: 5px;
  }
  .split input{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  .split p{
    font-size: 1.25em;
  }
  .button-row{
    text-align: right;
  }
  .button-row-button{
    background-color: #2D22AD;
    border-radius:5px;
    font-size: 1.5em;
    padding: 15px;
    color:white;
    border: 0px;
    margin-right: 15px;
      cursor: pointer;
  }
  .button-row-button:hover{
    background-color: #231a8a;
    box-shadow: 0px 0px 29px -5px #000;
    transition: all 0.2s ease-in-out;
  }
  .button-row-button:not(hover){
    background-color: #2D22AD;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
  }
  .page {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .page.active {
    display: block;
    opacity: 1;
  }
.step:hover{
    background-color: lightgray;
    
    transition: all 0.2s ease-in-out;
}
.step:not(hover){
    
    background-color: none;
    transition: all 0.4s ease-in-out;
}
  /* Customize the label (the container) */
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 20px;
    cursor: pointer;
    user-select: none;
    font-size: 1.25em;
  }
  
  /* Hide the browser's default checkbox */
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: grey;
    border: none;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-checkbox input:checked ~ .checkmark {
    background-color: #3685B4;
  }
  /* Customize the label (the container) */
.custom-radio {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 20px;
    cursor: pointer;
    user-select: none;
  }
#priceSlider {
            height: 8px;
            margin-top: 25px;
            background-color: grey;
            border-radius:5px;
            margin-bottom:10px;
        }

        /* Styling the drag points (handles) */
        #priceSlider .noUi-handle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #000;
            cursor: pointer;
            box-shadow:none !important;
        }

        /* Styling the line between the handles */
        #priceSlider .noUi-connect {
            height: 8px;
            border-radius:5px;
            background-color: #2196f3;
        }

        /* Styling the tooltip (output) elements */
        #priceValues {
            display: flex;
            justify-content: space-between;
            font-family: Arial, sans-serif;
            font-size: 14px;
            margin-top: 25px;
        }
        .noUi-handle:after, .noUi-handle:before{
            background:none !important;
        }
  /* Hide the browser's default radio */
  .custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio */
  .radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: grey;
    border-radius: 50%;
    border: none;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-radio:hover input ~ .radiomark {
    background-color: #ccc;
  }
  
  /* When the radio is checked, add a blue background */
  .custom-radio input:checked ~ .radiomark {
    background-color: #3685B4;
  }

  #hasManager, #noManager{
    display: none;
  }

  .upload-box {
    width: 100%;
    height: 100px;
    border: 2px dashed grey;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .photo-upload-container p{
    font-size: 1.25em;;
  }

  .small-no-input{
    width: 40px;
    -moz-appearance: textfield;
    font-size: 1.1em;
    padding: 5px;
    text-align: center;
  }
  .small-no-input::-webkit-inner-spin-button, 
.small-no-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
  .box-row{
    padding: 10px;
    font-size: 1.25em;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}
  .rooms{
    width: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .class-p-font{
    font-size: 1.25em;
  }
  .save-changes-btn{
    font-size: 1.25em;
    padding: 10px 20px;
    color:white;
    padding: 10px 20px;
    border: 0px;
    border-radius:5px;
    background: #50A3D5;
  }
  .textarea-home{
    width: 100%;
    height: 200px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.1em;
  }
  .ms-container{
    display: flex;
    justify-content: space-between;
    padding: 15px;
  }
  .boxed-ms{
    padding: 5px;
    background-color: #FBFBFB;
    border-radius:5px;
    border: 1px solid grey;
    width: 125px;
    height: 100px;
    text-align: center;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .boxed-ms img{
    width: 40px;
    margin-bottom: 5px;
  }

  .btn-green{
    display: block;
    padding: 10px 20px;
    background-color: #619F30;
    border: 0px;
    border-radius:5px;
    font-size: 1.25em;
    color: white;
    margin-left: auto;
  }
  .btn-red{

    display: block;
    padding: 10px 20px;
    background-color: #FF5757;
    border: 0px;
    border-radius:5px;
    font-size: 1.25em;
    color: white;
    margin-left: auto;
  }
  .terms{
    text-align: right;
    margin-top: 15px;
    margin-bottom: 15px;
  }
/* Hide the actual checkbox */
.box-checkbox, .box-checkbox-hol-ty, .box-checkbox-hom-ty {
    display: none;
}

/* Make the label cover the entire box */
.box-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* Style the selectable-box when the hidden checkbox is checked */
.box-checkbox:checked + .box-label {
    background-color: #3685B4;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid purple;
    color: white;
}
.box-checkbox-hol-ty:checked + .box-label {
    background-color: #3685B4;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid purple;
    color: white;
}
.box-checkbox-hom-ty:checked + .box-label {
    background-color: #3685B4;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid purple;
    color: white;
}




.search-box{
    width: 100%;
    padding: 0px;
    background-color: #EFEFEF;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap:10px;
    border-radius:5px;
    margin-top:30px;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
}
.search-box form{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-content: center;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
    margin-top: -22px;
}
.search-box h2{
    padding: 10px;
    white-space: nowrap;
    margin: 0px;
    font-size: 1em;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
}
#hotelNameS{
    padding: 10px;
    font-size: 1.25em;
    border-radius: 5px;
    box-sizing: border-box;
}
#checkInDateS,#checkOutDateS, #numberOfGuestsS,.search-btnS {
    padding: 10px;
    font-size: 1.25em;
    border-radius: 5px;
        margin: 0px;
    box-sizing: border-box;
}

.main-hero-section-vh{
    
}
.unseta{
    text-decoration: none; /* Reset text decoration */
    color: inherit; /* Inherit color from parent */
    display: block; 
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.resultscard:hover{
    background-color: azure;
}

/* Style for the modal */
.filterModal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9999999;
    overflow: hidden;
    }

    .filterModal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 30px;
        border-radius:5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        max-width: 90%; /* Responsive maximum width */
        width: 700px; /* Initial width, can be adjusted */
        z-index: 19999999;
        height:85%;
        overflow-y: scroll;
    }

    /* Style for the close button inside the modal */
    .filterModal .close {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }

    /* Style for the categories */
    .category {
        border-bottom: 1px solid lightgrey;
        padding-bottom: 5px;
    }

    .category-toggle {
        cursor: pointer;
    }

    .amenities {
        display: none;
        margin-top: 5px;
        padding-left: 20px;
    }

    .amenities.show {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
/* Style for the category container */
    .category-container {
        max-height: 250px; /* Adjust the height as needed */
        overflow-y: scroll;
    }

    /* Style for the indicator container */
    .category-indicator {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .scroll-up-button,
    .scroll-down-button {
        padding: 5px 10px;
        font-size: 18px;
        cursor: pointer;
        background: none;
        border: none;
    }
/* Style for the checkboxes and labels */
    .search_checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .search_checkbox-label {
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
    }

    .search_checkbox-label input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        margin-right: 8px;
        border: 2px solid #ccc;
        border-radius: 4px;
        cursor: pointer;
    }

    .search_checkbox-label input[type="checkbox"]:checked {
        border-color: #007bff;
        background-color: #007bff;
    }





/* other styles */
#modal{
    display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius:5px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.close {
  color: #aaa;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 50px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}



.review-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
    margin-top: 50px;
}

.review-stars {
  display: flex;
}

.review-stars img {
  width: 20px;
  height: 20px;
}

.review-text {
  font-size: 1.1em;
}

.review-author {
  justify-self: end;
  color: gray;
  font-size: 0.9em;
}
#openModal{
    width: 100%;
    font-size: 1em;
    background-color: white;
    border: 0px;
    text-align: left;
        display: flex;
    align-items: center;
    gap: 25px;
    transition:all 0.2s ease;
    padding:5px;
    border-radius:5px;
    cursor:pointer;
}
#openModal:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* Existing styles */
.gallery-container {
    overflow-x: scroll;
    white-space: nowrap;
}

.gallery-image {
    display: inline-block;
    height: 200px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* Modal styles */
.gal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000; /* Ensure the modal is above the nav bar */
    overflow-y: auto; /* Add scroll for modal */
}

.gal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001; /* Above the modal */
}

.gal-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh; /* Set to 90% of the viewport height */
}

.gal-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.filteBtn{
  font-size: 1.25em;
  padding: 10px 20px;
  background-color: #2D22AD;
  border:2px solid #2D22AD;
  border-radius:5px;
  color: white;
  transition:all ease 0.2s;
  cursor:pointer;
}
.filteBtn:hover{
    background-color: #140a84;
}
.clearFilteBtn{
  font-size: 1.25em;
  padding: 10px 20px;
  border:2px solid #50A3D4;
  color: #50A3D4;
  border-radius:5px;
  background-color: white;
  display:none;
}
.titRow{
  display: flex;

    justify-content: space-between;
}
.titRowL{
    margin-top:16px;
}
.filterOutputRor{
    margin-top:16px;
    display:none;
}
#updateButton{
    display:none;
}
#sortOption{
  font-size: 1.25em;
  padding: 10px 20px;
  border-radius:5px;
}
.results-card{
    width: 100%;
    padding: 15px;
    display: flex;
    box-shadow: 0px 0px 10px 0px #00000040;
    border-radius:5px;
    box-sizing: border-box;
    justify-content: space-between;
    transition: 0.3s all ease;
}
.results-card:hover{
    box-shadow: 0px 0px 10px 0px #00a1ff66;
    
}
.results-card-reviews{
    padding: 15px;
    text-align: center;
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.results-card-reviews img{
    width: 15px;
}
.results-card-reviews span{
    font-size: 14px;
    display: block;
    width: 100%;
}
.rc-img{
  width: 100%;
    max-height: 125px;
    border-radius: 5px;
    object-fit: cover;
}
.imgCont{
  width: 40%;
}
.card-info{

}
.card-info h3{
  font-size: 1.25em;
  margin-left: 25px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.card-info table{
  padding: 0px;
  margin: 0px;
}
.card-info table td{
  padding: 0;
  font-size: 0.80em;
  padding-left: 30px;
    padding-top: 5px;
}
.card-info table td img {
  width: 20px;
}
.tdFlex{
  display: flex;
}

.resultSplit{
  display: flex;
  align-items: stretch;
  gap: 5px;
}
.showcaseL{
  width: 50%;
}
.outputMap{
  width: 50%;
}
#map{
  border-radius:5px;
}
.btn-row{
  margin-top: 25px;
}


.filter-option-2{
  margin-top: 10px;
}

.sel-box-clicked{
    border: 1ps solid red;
    background-color: aliceblue;
    border-radius:5px;
}
.sel-box-deactivated{
    opacity: 0.5;
}
.compleated-temp{
    padding: 25px;
    background-color: green;
    color:white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}
.compleated-temp-sub{
    padding: 25px;
    background-color: blue;
    color:white;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}
.outputContainer{
    overflow-y: auto;
    max-height: 600px;
    overflow-x: hidden;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap:35px;
    padding-top: 15px;
}
/* Custom scrollbar styling */
    .outputContainer::-webkit-scrollbar {
        width: 7px;
        border-radius: 5px;
    }

    .outputContainer::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
    }

    .outputContainer::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

    .outputContainer::-webkit-scrollbar-thumb:hover {
        background: blue;
        border-radius: 5px;
    }



.admin-full-width-wrapper{
    
}
.welcome-banner{
    padding: 25px;
    background-color: cornflowerblue;
    color: white;
    
    display: flex;
    justify-content: space-between;
}
.welcome-banner h1{
    color: white;
}


.holiday-countdown-container{
    text-align: center;
}

.countdown {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.countdown h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.countdown-timer {
  font-size: 20px;
}

.countdown-timer span {
  margin: 0 5px;
}

.admin-full-width-container{
    width: 100%;
    display: flex;
}
.admin-sidebar{
    width: 17%;
    min-width: 250px;
    border-right: 1px solid lightblue;
}
.admin-sidebar a{
    text-decoration: none;
    color: black;
}
.logout-btnn{
    all: unset;
    display: block;
    width: 90%;
    padding: 10px 20px;
    text-align: center;
    background-color: #ffc7c7;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s all ease;
    margin-top: 25px;
}
.logout-btnn:hover{
    background-color: #ffaaaa;
}
.become-a-homeowner-button{
    all: unset;
    display: block;
    width: 90%;
    padding: 10px 20px;
    text-align: center;
    background: rgb(154,0,255);
background: -moz-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
background: -webkit-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
background: linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9a00ff",endColorstr="#f800ff",GradientType=1);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s all ease;
    margin-top: 25px;
    color: white !important;
    font-weight: 700;
    letter-spacing: 1px;
}
.become-a-homeowner-button:hover{
    background: rgb(0,1,255);
background: -moz-linear-gradient(48deg, rgba(0,1,255,1) 0%, rgba(124,0,255,1) 100%);
background: -webkit-linear-gradient(48deg, rgba(0,1,255,1) 0%, rgba(124,0,255,1) 100%);
background: linear-gradient(48deg, rgba(0,1,255,1) 0%, rgba(124,0,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0001ff",endColorstr="#7c00ff",GradientType=1);
}
.admin-sidebar h6{
    color: #797979;
    font-weight: 100;
    padding-bottom: 5px;
    border-bottom: 1px solid grey;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    margin-top: 10px;
}
.active-li{
    padding: 0px;
    margin-left: 35px;
    padding-bottom: 5px;
    color: #4CAF50;
    font-size: 0.9em;
    pointer-events: none;
}
.pending-li{
    padding: 0px;
    margin-left: 35px;
    padding-bottom: 5px;
    color: #FF9800;
    font-size: 0.9em;
    pointer-events: none;
}
.admin-sidebar .ulNorm{
    list-style-type: none;
    font-size: 1.1em;
}
.admin-sidebar .ulNorm li{
    padding: 10px 20px;
    cursor: pointer;
    transition: all ease 0.3s;
}
.admin-sidebar .ulNorm li.active{
    margin-left: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: cornflowerblue;
    color:aliceblue;
}
.admin-sidebar .ulNorm li:hover{
    margin-left: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: blue;
    color: aliceblue;
}
.admin-sidebar .ulNorm li.homeowner-li{
}

.admin-sidebar .ulprop{
    list-style-type: none;
    font-size: 0.85em;
}
.admin-sidebar .ulprop li{
    padding: 5px 5px 5px 30px !important;
    cursor: pointer !important;
    transition: all ease 0.3s !important;
    margin-left:10px;
}
.admin-sidebar .ulprop li.active{
    margin-left: 30px !important;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    background-color: cornflowerblue !important;
    color:aliceblue !important;
}
.admin-sidebar .ulprop li:hover{
    margin-left: 30px !important;
    background-color: blue !important;
    color: aliceblue !important;
}

.admin-sidebar .ulpropc{
    list-style-type: none;
    font-size: 1.1em;
}
.admin-sidebar .ulpropc li{
    padding: 10px 20px;
    cursor: pointer;
    transition: all ease 0.3s;
}
.admin-sidebar .ulpropc li.active{
    margin-left: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: cornflowerblue;
    color:aliceblue;
}
.admin-sidebar .ulpropc li:hover{
    margin-left: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: blue;
    color: aliceblue;
}
.admin-content{
    width: 70%;
}

.fl-right{
    text-align: center;
}
.myDashContainer, .myProfContainer, .myBookContainer, .myMarContainer, .myPropContainer, .myFeedContainer, .myContContainer, .manageProperties{
    display: none;
    padding: 25px;
}

.profile{
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid grey;
}
/*********************ADMIN*****************************/
.admin-center-card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.admin-center-card-container .card{
    flex: 1 1 calc(25% - 20px); /* Initial width, 3 cards per row */
    max-width: calc(25% - 20px); /* Max width for 3 cards per row */
    margin: 10px; /* Adjust margins for spacing between cards */
    border-radius: 3px;
    padding: 20px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3 ease-in all;
}
.admin-center-card-container .card:hover{
    background-color: aqua;
    cursor: pointer;
    transition: 0.3 ease-in all;
}
.admin-center-card-container .card h2{
    font-size: 2em;
    font-weight: 200;
    margin: 0px;
    padding: 15px;
}

.selectedActive{
    background-color: red;
}
.ssactive{
    
    display: block !important;
}
#deleteAllButton{
    margin-bottom: 20px;
    all: unset;
    padding: 10px 20px;
    background-color: #ff7878;
    border-radius: 3px;
    color: white;
    transition: 0.3s all ease;
    cursor:pointer;
}
#deleteAllButton:hover{
    background-color: #ff7c2a;
}

#updateOrderButton{
    margin-bottom: 20px;
    all: unset;
    padding: 10px 20px;
    background-color: #3498db;
    border-radius: 3px;
    color: white;
    transition: 0.3s all ease;
    cursor:pointer;
}
#updateOrderButton:hover{
    background-color: #2980b9;
}


#reserved-dates-container, #manage-custom-prices, #manage-amedities, #manage-photos-container, #manage-description-container, #manage-information-container, #manage-dashboard-container, #manage-ex-container {
    display: none;
    padding-top:25px;
}
#sfiloutput{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0px;
}
.btnSelectedFilters{
    padding: 5px 10px;
    border:0px;
    background-color: lightblue;
    border-radius: 3px;
    margin-bottom: 0px;
    transition: 0.3s ease all;
    cursor: pointer;
}
.btnSelectedFilters:hover{
    background-color: indianred;
}
@media screen and (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px); /* 2 cards per row */
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .card {
    flex: 1 1 calc(100% - 20px); /* 1 card per row */
    max-width: calc(100% - 20px);
  }
}
/* Apply styles to each input group */
.input-group {
    flex: 1;
    margin-right: 20px;
}

/* Style labels */
.adminreslabel {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Style inputs */
.adminresinput {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.25em;
}

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Style the full-width button */
.full-width-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}



.ha-ul{
    list-style-type: none;
    font-size: 1.5em;
}
.ha-ul li{
    display: flex;
    justify-content: space-between;
    border-bottom: 2px grey solid;
    margin-top: 5px;
}
.alertBox{
    padding: 15px;
    background-color: lightgreen;
    border-radius: 3px;
    border:3px solid green;
    box-sizing: border-box;
    width: 100%;
    display: none;
}

.image-container {
      display: flex;
      flex-wrap: wrap;
    }
.draggable-image {
  width: 200px;
  height: 200px;
  margin: 10px;
  cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
    border-radius: 3px;
}
.image-wrapper {
  display: flex;
  align-items: center;
    
    flex-direction: column;
}
.order-number {
  margin-right: 5px;
}
.add-button {
      margin: 10px;
      padding: 5px 10px;
      background-color: #3498db;
      color: #fff;
      border: none;
      cursor: pointer;
    }
.drop-zone {
      border: 2px dashed #ccc;
      padding: 20px;
      text-align: center;
      cursor: pointer;
    }
 .upload-form {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      border: 2px dashed #ccc;
      border-radius:5px;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
      cursor: pointer;
      margin-top:25px;
      margin-bottom:55px;
    }

    .upload-form:hover {
      background-color: #e0e0e0;
    }

    .upload-icon {
      font-size: 48px;
      margin-bottom: 10px;
    }

    .custom-upload-button {
      width: 100%; /* Make the width 100% */
      padding: 10px 0; /* Adjust padding */
      background-color: #3498db;
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 16px;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
.valid-input {
    border: 2px solid green;
}

.invalid-input {
    border: 2px solid red;
}
    .custom-upload-button:hover {
      background-color: #2980b9;
    }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s infinite;
  animation-delay: 0s; /* Add this line */
}
.filtershowcase{
    padding: 10px;
    margin-right: 15px;
    background-color: red;
    border-radius: 30px;
}
/********************ADMIN END**************************/
/********************PROTAL**************************/
.portal-card-container{
    width: 100%;
    display: flex;
}
.portal-card{
    width: 100%;
    display: flex;
}

.todohigh{
    padding: 5px;
    font-size: 1.05em;
    background-color: indianred;
    border: 3px solid red;
    border-radius: 5px;
    width: 100%;
    display: block;
    margin: 5px 0px;
    color: white;
}
.todomed{
    padding: 5px;
    font-size: 1.05em;
    background-color: lightgoldenrodyellow;
    border: 3px solid orange;
    border-radius: 5px;
    width: 100%;
    display: block;
    margin: 5px 0px;
    color: black;
}
.property-card{
    width: 300px;
    text-align: left;
    padding: 20px;
    background-color: blue;
    border-radius: 3px;
}
.portal-property-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
}
.promotionContainer{
    margin-top: 25px;
    border-top: 1px solid grey;
    padding-top: 25px;
}
.myFeedContainer form{
    
    margin-top: 25px;
    border-top: 1px solid grey;
    padding-top: 25px;
}
.myFeedContainer textarea{
    width: 100%;
    height: 200px;
    border-radius: 3px;
    padding: 10px;
}
@media screen and (max-width: 1440px) {
    .menu-btn{
        font-size: 2.5em;
        width: 45px;
        height: 45px;
    }
    .menu-btn-close{
        font-size: 2.5em;
        width: 45px;
        height: 45px;
    }
    nav{
        padding: 10px;
    }
    header h1{
        font-size: 3em;
    }
    .search-form{
        gap: 25px;
    }
    .left-column{
        flex-direction: column;
    }
    .big-image{
        width: 100%;
    }
    .small-images{
        width: 100%;
        flex-direction: row;
    }
    .image{
        width: 50%;
    }
    .heading{
        font-size: 3.5em;
    }
    .box{
        width: 100px;
        height: 100px;
    }
    .showcase-container{
        justify-content: space-between;
    }
    .col-2{
        width: 47% !important;
        padding: 10px;
    }
    table{
        padding: 0px;
    }
    .col-2-right h3{
        
    }
    .col-2-right{
        padding: 0px;
    }
    .full_wrapper{
        width: 90%;
    }
}

@media screen and (max-width: 1200px) {
    .full_wrapper{
        width: 90%;
    }
    .resultSplit{
        gap:10px;
    }
    .results-card{
    max-width: 433px;
        margin-left: auto;
        margin-right: auto;
    }
    .search-form{
        gap:10px;
    }
    
    .col-4 {
        padding: 10px;
    }
    .col-4-container{
    flex-wrap: wrap;
    }
}
@media screen and (max-width: 1024px) {
    .box{width: 75px; height: 85px; font-size: 12px; padding: 10px}
    .pop-btn{width: 80%; text-align: center; margin-top: 25px;}
    .pop-con-left label {margin-right: 5px;font-size: 1em;}
    .heading {font-size: 2.75em;}
    .col-2-left{
        padding:5px;
        border-radius:10px;
    }
    .selectable-box{ width: calc(25%-10px);}
    .box-contin{gap:10px;margin: 0px;padding: 5px;}
}
@media screen and (max-width: 720px) {
    .col-2{
        width:100%;
    }
}
@media screen and (max-width: 768px) {
    header h1{
        font-size: 3em;
    }
    .holiday-search-container{
        height: auto;
    }
    #checkInDate,#checkOutDate, #numberOfGuests,.search-btn {
        width: 20%;
    }
    .right-column{
        padding: 30px;
    }
    .left-column{
        padding: 35px;
        flex: 0 0 35%;
    }
    .image-section{
        width: 100%;  
    justify-content: center;
    margin-top: 30px;
    flex-direction: column-reverse;
    }
    .image{
        height: 200px;
    }
    .full_wrapper{
        width: 100%;
    }
    .image{width: 45%;}
    .col-3-con {flex-wrap: wrap;}
    .col-3{width: 45%; margin-left: auto; margin-right: auto; margin-top: 25px;}
    .filter{
        width: 100%;
        padding: 0px;
        margin-top: 75px;
    }
    .filter-option-1{
        padding: 15px;
    }
    .data-collection-container-row{
      flex-direction: column;
    }
    .split{
      width: 100%;
    }
    .filter-option-1{
      margin-top: 25px;
      padding: 0px;
      gap:10px;
    }
    .box-contin{
      margin: 0px;
    }
    .form-index{
        padding: 0px 30px;
    }
}
@media screen and (max-width: 512px) {
    .logo-left{
        transform: translateX(0%);
    }
    .svg-inline--fa{
        height: 0.75em;
    }
    .menu-btn, .menu-btn-close{
        font-size: 1.75em;
        padding: 5px;
    }
    .heading-two{
        font-size: 2.5em;
    }
    .col-3{
        width: 100%;
    }
}
@media screen and (max-width: 425px) {
    .holiday-search-container{
        height: auto;
    }
    .boxes{
        gap:5px;
        justify-content: space-between;
    }
    .box{
        padding: 5px;
        width: 70px;
    }
    .box-contin{
        justify-content: space-around;
    }
}




/**************** RENT PAGE ***************************/
        .claim-button{
            width: 100%;
            border-radius: 15px;
            background-color: lightgrey;
            padding: 30px;
            display: block;
            box-sizing: border-box;
            margin-top: 40px;
            margin-bottom: 50px;
            font-size: 2.5em;
            font-weight: 700;
            text-align: center;
            transition:all 0.3s ease;
            text-decoration:none;
            color:black;
        }
        .claim-button:hover{
            background-color: #9fe1ff;
        }
        .high{
            color: #2D22AD;
        }
        .rh_h1{
            text-align: center;
            width: 100%;
            margin-bottom: 35px;
        }
        
        .rh_h2{
            text-align: center;
            width: 100%;
            margin-bottom: 35px;
            margin-top: 35px;
            font-size: 1.75em;
            color: black;
        }
        .rh_p{
            font-size: 1.15em;
            padding: 10px;
        }
        .rh_container{
            display: flex;
            margin-top: 35px;
        }
        .rh_list{
            width: 50%;
        }
        .rh_images{
            width: 50%;
        }
        .rh_image{
            width:100%;
            height:250px;
            object-fit:cover;
            border-radius:10px;
            padding:5px;
            box-sizing: border-box;
        }
        /* Customise the list */
        .rh_list ul {
            list-style: none; /* Remove default bullet points */
            margin: 0;
            padding: 25px;
        }

        /* Customise each list item */
        .rh_list li {
            position: relative; /* Create a positioning context for pseudo-elements */
    padding-left: 3em;  /* Make room for the custom bullet */
    margin-bottom: 25px;
    line-height: 1.5; /* Adjust line-height for better text alignment */
            font-size: 1em;
        }

        /* Customise the bullet point using a pseudo-element */
        .rh_list li::before {
            content: "•";  /* The bullet symbol */
    position: absolute;
    left: 0;  /* Align to the left */
    font-size: 5em;  /* Make the bullet larger */
    color: lightgrey;  /* Set the colour to light grey */
    top: 50%; /* Align to the middle of the element */
    transform: translateY(-50%); /* Further adjust for exact centering */
        }
        
        .full_width_grey{
            background-color: lightgray;
            width: 100%;
            text-align: center;
            margin-top: 50px;
            padding: 25px;
    box-sizing: border-box;
        }
        .full_width_grey h2{
            text-align: center;
            padding: 20px;
        }
        .full_width_grey a{
            box-sizing: border-box;
            padding: 0px 20px 20px 20px;
            margin-bottom: 25px;
            font-size: 1.25em;
            color:darkblue;
            display: block;
        }
        .rh_boxes{
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
                flex-wrap: wrap;
    margin-bottom: 30px;
        }
        .rh_box{
            padding: 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            border-radius: 5px;    
            box-shadow: 0px 4px 4px 0px #00000040;
            align-items: center;
            width: 15%;
            min-width: 150px;
        }
        .rh_box span{
            font-weight: 600;
        }
        
        .rh_box img{
            width: 70px;
            height: 70px;
        }
        .cta-action{
            display: flex;
            justify-content: flex-end;
            gap:30px;
        }
        .btn-btn-secondary{
                  width: 250px;
    font-size: 20px;
    background-color: white;
    border: 0px;
    box-shadow: 0px 4px 4px 0px #00000040;
    font-weight: 400;
    color: #3685B4;
    padding: 10px;
    border-radius: 3px;
    transition: 0.3s all ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    display: block;
    text-align: center;
            
}
        .btn-fix{
    box-sizing: border-box;
    display: block;
    text-align: center;
        }
        
        
        @media only screen and (max-width: 1200px) {
            .rh_list li {
                padding-left: 2.5em;
                margin-bottom: 20px;
                line-height: 1.5;
            font-size: 1em;
            }
        }
        @media only screen and (max-width: 1050px) {
            .rh_list li {
                padding-left: 2.5em;
                margin-bottom: 20px;
                line-height: 1.5;
            font-size: 1em;
            }
            .rh_boxes{
                margin-top: 20px;
                gap:10px;
                justify-content: space-evenly;
            }
            .rh_box{
                margin-top: 10px;
            }
        }
        @media only screen and (max-width: 800px) {
            .rh_list li {
                padding-left: 2em;
                margin-bottom: 20px;
                line-height: 1.5;
            font-size: 1em;
            }
            .spcae{
                padding: 20px;
                box-sizing: border-box;
            }
            .cta-action{
                justify-content: center;
            }
        }
        @media only screen and (max-width: 500px) {
            .subscribeForm{
                flex-direction: column;
                padding: 0px;
                gap:20px;
                margin-top: 25px;
            }
            .emailListInput{
                box-sizing: border-box;
                width: 100%;
            }
            .submitBtn{
                display: block;
                width: 100%;
                padding: 15px;
                font-weight: 100;
            }
            .cta-action{
                flex-direction: column;
            }
            .btn-btn-secondary, .btn-fix{
                width: 100%;
            }
            .mailingList{
                margin-top: 50px;
            }
            .rh_container{
                
                flex-direction: column;
            }
            .rh_list, .rh_images{
                width: 100%;
            }
        }
        
        
        /* Index */
        /* Button and dropdown container */
    #container {
      position: relative;
    }

    /* Button styles */
    #guestButton {
    background-color: white;
    color: black;
    cursor: pointer;
    display: block;
    padding: 15px;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid grey;
    box-sizing: border-box;
    margin-bottom:0px;
    }

    /* Dropdown box */
    #dropdownBox {
      display: none;
      position: absolute;
      top: -170px; /* adjust as needed */
      width: 200px;
      padding-bottom:30px;
    }

    /* Fields inside the box */
    .field {
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* On hover */
    #container:hover #dropdownBox {
      display: block;
    }
    .dropBoxCon{
      background-color: #fff;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      border-radius:5px;
    }
    .field {
      padding: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ccc;
    }

    .field:last-child {
      border-bottom: none;
    }

    /* Plus and Minus buttons */
    .field button {
      background-color: #007BFF;
      color: white;
      border: none;
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 30px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 4px;
      margin-bottom:0px;
    }

    /* Number input */
     .field input[type="number"] {
      text-align: center;
      border: 1px solid #ccc;
      border-radius: 4px;
      width:30px;
      height:30px;
    }
    .field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}








/* PRop Admin */

            .editor-container{
                padding: 25px 0px;
                margin-bottom: 35px
            }
            .row-container{
                display: flex;
                justify-content: space-between;
                gap: 25px;
            }
            .edit-con, .display-con{
                width:50%;
            }
            #editor{
                width:100%;
                height:150px;
                box-sizing:border-box;
            }
            .editor-container textarea{
                font-size: 1.1em;
                padding: 10px;
            }
            .no-left-pad{
                padding-left: 0px;
                margin-left: 0px;
                margin-bottom: 10px;
            }
            #preview{
                margin-bottom: 25px;
                font-size: 1.1em;
            }
            .pre_img_sec{
                display: flex;
                justify-content: space-between;
                margin-top: 10px;
            }
            .btn-return-to-dash{
                padding:20px;
                font-weight:400;
                letter-spacing:1px;
                display:block;
                box-sizing:border-box;
                transition: 0.3s solid all;
                color:grey;
                text-decoration:none;
            }
            
            .btn-return-to-dash:hover{
                font-weight:700;
                color:#000;
            }
            .status-container{
                -webkit-box-shadow: 0px 0px 20px -5px rgba(179,179,179,1);
-moz-box-shadow: 0px 0px 20px -5px rgba(179,179,179,1);
box-shadow: 0px 0px 20px -5px rgba(179,179,179,1);
float: right;
    margin-top: -35px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #FF9800;
            }
            .h1-pa{
                font-size:2.5em;
                margin-top:10px;
                margin-bottom:20px;
            }
            .highprimary{
                color:#3685B4;
            }
            
            
            .selcard {
    width: 200px;
    height: 100px;
    background: rgb(154,0,255);
    background: -moz-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    background: -webkit-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    background: linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9a00ff",endColorstr="#f800ff",GradientType=1);
    border-radius: 20px;
    transition: all .3s;
    display:flex;
    align-items: center;
    justify-content: center;
}

.selcard2 {
 width: 198px;
 height: 98px;
 background-color: #fff;
 border-radius:20px;
 transition: all .2s;
 display:flex;
    align-items: center;
    cursor:pointer;
    justify-content: center;
}

.selcard2:hover {
 transform: scale(0.96);
 border-radius: 20px;
 background-color: #fff;
}

.selcard:hover {
 box-shadow: 0px 0px 30px 1px rgb(0 161 255 / 30%);
}
.sel-card-title{
    font-size:1.2em;
    font-weight:400;
    text-align:center;
    width:100%;
}
.sel-card-title.active{
    font-size: 1.3em;
    font-weight: 400;
    text-align: center;
    font-weight: 600;
    width: 100%;
    color: white;
}


.selcard-2 {
    width: 200px;
    height: 50px;
    background: rgb(154,0,255);
    background: -moz-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    background: -webkit-linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    background: linear-gradient(48deg, rgba(154,0,255,1) 0%, rgba(248,0,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9a00ff",endColorstr="#f800ff",GradientType=1);
    border-radius: 20px;
    transition: all .3s;
    display:flex;
    align-items: center;
    justify-content: center;
}

.selcard2-2 {
 width: 198px;
 height: 48px;
 background-color: #fff;
 border-radius:20px;
 transition: all .2s;
 display:flex;
    align-items: center;
    cursor:pointer;
    justify-content: center;
}

.selcard2-2:hover {
 transform: scale(0.96);
 border-radius: 20px;
 background-color: #fff;
}

.selcard-2:hover {
 box-shadow: 0px 0px 30px 1px rgb(0 161 255 / 30%);
}
.sel-card-title{
    font-size:1.2em;
    font-weight:400;
    text-align:center;
    width:100%;
}
.sel-card-title.active{
    font-size: 1.3em;
    font-weight: 400;
    text-align: center;
    font-weight: 600;
    width: 100%;
    color: white;
}



.menu-for-property-container{
        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    flex-direction: row;
    padding-bottom:25px;
    border-bottom: 1px blue solid;
}
.view-all-bookings, .manual-res{
    display:none;
}
.manual-res.active, .view-all-bookings.active{
    display:block;
}
.sel-card-con{
    display: flex;
    gap: 5%;
    justify-content: center;
}
.bcf{
    margin-left:0px;
    margin-right:0px;
}
.pchin{
    padding:5px;
    border-radius:3px;
    border:1px solid grey;
    width:100%;
    box-sizing:border-box;
    margin-bottom:10px;
}
.requiredToFill{
    border:2px solid red;
}

.notACheckInDay{
    pointer-events: none;
    color: grey;
}

.checakbox{
    width: fit-content;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-left: 25px;
    margin-bottom: 10px;
}

/* Search Form Styles */
.holiday-search-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-form input,
.search-form button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.search-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #0056b3;
}

/* About Section Styles */
.image-section {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
}

.big-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.small-images {
    display: flex;
    gap: 15px;
}

.small-images img {
    width: 48%;
    border-radius: 8px;
}

.subheading {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 10px;
}

.heading-two {
    color: #343a40;
    font-size: 30px;
    margin-bottom: 20px;
}

.boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.box {
    text-align: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE — UNIFIED PROPERTY CARD SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Global content container ────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ── Section wrapper ─────────────────────────────────────────────────────── */
.hp-section {
    padding: 72px 0;
}
.hp-section--alt {
    background: #f7f9fc;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #3685B4;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    text-align: center; /* override any global h2 left-align */
}

/* ── Card grid ───────────────────────────────────────────────────────────── */
.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ── Property card ───────────────────────────────────────────────────────── */
.prop-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.13);
    color: inherit;
    text-decoration: none;
}

/* Image area */
.prop-card__image {
    height: 215px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.prop-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.28) 0%, transparent 55%);
}

/* Tag pill */
.prop-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 11px;
    border-radius: 999px;
    color: #fff;
    backdrop-filter: blur(4px);
}
.prop-card__tag--party    { background: rgba(220, 60, 60, 0.9); }
.prop-card__tag--cosy     { background: rgba(14, 140, 120, 0.9); }
.prop-card__tag--family   { background: rgba(29, 90, 138, 0.9); }
.prop-card__tag--romantic { background: rgba(174, 58, 130, 0.9); }
.prop-card__tag--featured { background: rgba(120, 60, 200, 0.9); }
.prop-card__tag--quieter  { background: rgba(60, 120, 60, 0.9); }

/* Card body */
.prop-card__body {
    padding: 1.1rem 1.1rem 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.prop-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}
.prop-card__location {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.prop-card__location i {
    color: #3685B4;
    font-size: 0.72rem;
}

/* Stats row (beds / baths) */
.prop-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.2rem;
}
.prop-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.76rem;
    color: #555;
    background: #f5f6f8;
    border-radius: 6px;
    padding: 3px 8px;
}
.prop-card__stat i {
    color: #3685B4;
    font-size: 0.7rem;
}

/* Amenity chips */
.prop-card__amenities {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.prop-card__amenity {
    font-size: 0.72rem;
    color: #3685B4;
    background: #eef6fc;
    border-radius: 6px;
    padding: 3px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card footer */
.prop-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.1rem 0.9rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}
.prop-card__price {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.2;
}
.prop-card__price strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
}
.prop-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3685B4;
    border: 1.5px solid #3685B4;
    border-radius: 999px;
    padding: 5px 14px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.prop-card:hover .prop-card__cta {
    background: #3685B4;
    color: #fff;
}

/* ── 2-column variant for showcase ──────────────────────────────────────── */
.prop-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Section wrappers on index ───────────────────────────────────────────── */
.popular {
    padding: 64px 0;
    background: #fff;
}
.showcase-section {
    padding: 64px 0;
    background: #f7f9fb;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .prop-grid { gap: 16px; }
    .prop-grid--2col { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
}
@media (max-width: 600px) {
    .prop-grid { grid-template-columns: 1fr; }
    .hp-section { padding: 48px 0; }
    .popular, .showcase-section { padding: 48px 0; }
}

/* List With Us Section Styles */
.list-with-us {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.list-content {
    flex: 1;
}

.list-heading {
    color: #343a40;
    font-size: 36px;
    margin-bottom: 10px;
}

.list-subheading {
    color: #6c757d;
    font-size: 24px;
    margin-bottom: 20px;
}

.list-description {
    color: #495057;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.list-benefits {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.list-benefits li {
    color: #495057;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.list-benefits li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 20px;
}

.list-cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.list-image {
    flex: 1;
}

.list-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILTER / FIND YOUR PERFECT STAY
   ═══════════════════════════════════════════════════════════════════════════ */
.filter-section {
    background: #fff;
    padding: 64px 0;
}

/* Chip row */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.2rem;
}

/* Individual chip */
.filter-chip {
    position: relative;
    cursor: pointer;
}
.filter-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.filter-chip__inner {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid #e0e4ea;
    border-radius: 999px;
    background: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    color: #444;
    transition: border-color 0.16s, background 0.16s, color 0.16s, box-shadow 0.16s;
    user-select: none;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
}
.filter-chip__inner img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.filter-chip__inner:hover {
    border-color: #3685B4;
    color: #3685B4;
    box-shadow: 0 0 0 3px rgba(54,133,180,0.1);
}
.filter-chip input:checked + .filter-chip__inner {
    background: #3685B4;
    border-color: #3685B4;
    color: #fff;
    box-shadow: 0 2px 10px rgba(54,133,180,0.35);
}
.filter-chip input:checked + .filter-chip__inner:hover {
    background: #1a508a;
    border-color: #1a508a;
}

/* Divider between chip groups */
.filter-chips__divider {
    width: 1px;
    height: 36px;
    background: #e0e4ea;
    align-self: center;
    flex-shrink: 0;
    margin: 0 4px;
}

/* Submit button */
.filter-submit-wrap {
    text-align: center;
}
.filter-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    background: linear-gradient(135deg, #3685B4 0%, #1a508a 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 4px 18px rgba(54,133,180,0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.filter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54,133,180,0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROPERTY COLLECTIONS (CATEGORY CARDS)
   ═══════════════════════════════════════════════════════════════════════════ */
.property-categories {
    background: #f7f9fb;
    padding: 64px 0;
}

.categories-heading,
.categories-subheading {
    text-align: center;
}
.categories-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}
.categories-subheading {
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #3685B4;
    margin: 0 0 2.5rem;
}

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

/* Full-image overlay card */
.category-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    height: 280px;
    background: #111;
}
.category-card:hover { text-decoration: none; }

.category-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}
.category-card:hover .category-image {
    transform: scale(1.06);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.2)  55%,
        transparent      100%
    );
}

.category-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    z-index: 1;
}
.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #fff;
}
.category-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
    position: static; /* override old absolute */
    bottom: auto;
    left: auto;
    right: auto;
}
.category-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.78);
    margin: 0 0 12px;
    line-height: 1.4;
}
.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    padding: 5px 13px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.category-card:hover .category-cta {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* ─── Responsive — homepage sections ────────────────────────────────────── */
@media (max-width: 992px) {
    .list-with-us .container { flex-direction: column; }
    .list-content, .list-image { width: 100%; }
}
@media (max-width: 768px) {
    .image-section { flex-direction: column; }
    .list-heading    { font-size: 30px; }
    .list-subheading { font-size: 20px; }
    .list-description { font-size: 16px; }
    .categories-grid { grid-template-columns: 1fr; }
    .category-card { height: 240px; }
    .category-cta { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .filter-chips__divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROMOTIONAL SPLIT SECTIONS — Welcome Book & Free Listing
   ═══════════════════════════════════════════════════════════════════════════ */

.promo-section {
    padding: 80px 0;
}
.promo-section--welcome {
    background: #fff;
}
.promo-section--listing {
    background: #f7f9fb;
}

/* Split layout */
.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.promo-split--reverse {
    direction: rtl; /* flip column order */
}
.promo-split--reverse > * {
    direction: ltr; /* reset text direction inside */
}

/* Text column */
.promo-split__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.promo-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #3685B4;
    background: #eef6fc;
    border: 1px solid #c8e2f5;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 12px;
    width: fit-content;
}
.promo-badge--green {
    color: #1a8a5e;
    background: #edfaf4;
    border-color: #b8e8d4;
}
.promo-split__text .section-eyebrow {
    text-align: left;
    margin-bottom: 10px;
}
.promo-heading {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-align: left !important; /* override global h2 */
}
.promo-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.4rem;
}
.promo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.5;
}
.promo-list li i {
    color: #3685B4;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.promo-list li i.fa-check-circle + span,
.promo-section--listing .promo-list li i {
    color: #1a8a5e;
}

/* CTAs */
.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #3685B4 0%, #1a508a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 4px 16px rgba(54,133,180,0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    width: fit-content;
}
.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54,133,180,0.45);
    color: #fff;
    text-decoration: none;
}
.promo-cta--green {
    background: linear-gradient(135deg, #1fa36e 0%, #0d6b47 100%);
    box-shadow: 0 4px 16px rgba(26,138,94,0.35);
}
.promo-cta--green:hover {
    box-shadow: 0 8px 24px rgba(26,138,94,0.45);
}

/* Visual card */
.promo-split__visual {
    display: flex;
    justify-content: center;
}
.promo-visual-card {
    background: linear-gradient(145deg, #1a508a 0%, #3685B4 100%);
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 16px 48px rgba(26,80,138,0.25);
}
.promo-visual-card--green {
    background: linear-gradient(145deg, #0d6b47 0%, #1fa36e 100%);
    box-shadow: 0 16px 48px rgba(13,107,71,0.25);
}
.promo-visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.promo-visual-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}
.promo-visual-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px;
}
.promo-visual-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.promo-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.9);
}
.promo-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.promo-visual-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 4px 12px;
}

/* Promo listing green icon override */
.promo-section--listing .promo-list li i {
    color: #1a8a5e;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .promo-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .promo-split--reverse { direction: ltr; }
    .promo-split__visual { order: -1; }
    .promo-visual-card { max-width: 100%; }
    .promo-heading { font-size: 1.7rem; }
    .promo-section { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.hiw-section {
    background: #f7f9fb;
    padding: 72px 0;
}

/* 3-column grid with connectors in-between */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 24px;
    margin-top: 0;
}

/* Individual step */
.hiw-step {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid #eef0f4;
    position: relative;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.hiw-step:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

/* Step number — large faint background numeral */
.hiw-step__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: #f0f4f8;
    line-height: 1;
    user-select: none;
    font-family: 'Barlow', sans-serif;
}

/* Icon circle */
.hiw-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eef6fc 0%, #d6ecf8 100%);
    border-radius: 16px;
    font-size: 1.3rem;
    color: #3685B4;
    margin: 0 auto 20px;
}

.hiw-step__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.hiw-step__desc {
    font-size: 0.86rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* Arrow connector */
.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccd5e0;
    font-size: 1.4rem;
    padding-top: 56px; /* align with card body */
}

/* Responsive */
@media (max-width: 860px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hiw-connector { display: none; }
    .hiw-step { text-align: left; padding: 24px; }
    .hiw-step__icon { margin: 0 0 14px; }
    .hiw-section { padding: 52px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT CORNWALL + ABOUT US
   ═══════════════════════════════════════════════════════════════════════════ */
.about-section {
    background: #fff;
    padding: 80px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Image mosaic */
.about-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
    height: 480px;
}
.about-mosaic__main {
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
}
.about-mosaic__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-mosaic__stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-mosaic__stack img {
    flex: 1;
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    min-height: 0;
}

/* Text column */
.about-text {
    display: flex;
    flex-direction: column;
}
.about-eyebrow {
    text-align: left;
    display: block;
    margin-bottom: 8px;
}
.about-title {
    text-align: left !important;
    margin-bottom: 1rem;
}
.about-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.75;
    margin: 0 0 1.2rem;
}
.about-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #3685B4, #1a508a);
    border-radius: 999px;
    margin: 1.4rem 0;
}

/* Stats row */
.about-stats {
    display: flex;
    gap: 32px;
    margin: 1.6rem 0 2rem;
    flex-wrap: wrap;
}
.about-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.about-stat__num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #3685B4;
    line-height: 1;
    font-family: 'Barlow', sans-serif;
}
.about-stat__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #aaa;
}

.about-cta { width: fit-content; }

/* Responsive */
@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-mosaic {
        height: 320px;
    }
    .about-section { padding: 56px 0; }
}