* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      color: #222;
      background: #fff;
      line-height: 1.6;
    }

    header {
      padding: 0px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      background: white;
      z-index: 10;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #2f5d50;
    }
	.logo img{width:240px}
    nav a {
      margin-left: 25px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

   .airbnb-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 35px 64px 60px;
}

.listing-header {
  display: flow;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}
p{line-height: 32px;}
.listing-header h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.listing-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.listing-actions a {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  height: 492px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-section img{width: 85% !important;}
/* Big left image */
.main-photo {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

/* Small images */
.small-photo {
  overflow: hidden;
  position: relative;
}

/* Right corner rounding */
.photo-grid .small-photo:nth-child(3) {
  border-radius: 0 16px 0 0;
}

.photo-grid .small-photo:nth-child(5) {
  border-radius: 0 0 16px 0;
}

/* Show photos button */
.photo-button-wrap {
  position: relative;
}

.show-photos-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.show-photos-btn span {
  margin-right: 8px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .airbnb-section {
    padding: 24px;
  }

  .listing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .listing-header h1 {
    font-size: 26px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .main-photo,
  .small-photo {
    height: 260px;
    border-radius: 14px !important;
  }
}

.gallery-popup {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  overflow-y: auto;
}

.gallery-popup.active {
  display: block;
}

.photo-tour-wrap {
  padding: 56px 60px 100px;
  position: relative;
}

.close-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
}

.tour-title {
  font-size: 34px;
  margin-bottom: 45px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px 24px;
  margin-bottom: 80px;
}

.tour-grid a {
  text-decoration: none;
  color: #222;
}

.tour-grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}

.tour-grid span {
  display: block;
  font-size: 12px;
  margin-top: 12px;
}

.photo-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: start;
}

.photo-section h2 {
  font-size: 32px;
  margin: 0;
  position: sticky;
  top: 40px;
}

/* .photo-section img { */
  /* grid-column: 2; */
  /* width: 100%; */
  /* max-height: 760px; */
  /* object-fit: cover; */
  /* margin-bottom: 24px; */
/* } */

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .tour-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-section {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .photo-tour-wrap {
    padding: 40px 20px 80px;
  }

  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tour-grid img {
    height: 110px;
  }

  .tour-grid span {
    font-size: 16px;
  }
}
.details-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 35px 64px 80px;
  display: grid;
  grid-template-columns: minmax(0, 920px) 400px;
  gap: 120px;
  align-items: start;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.property-title h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 700;
}

.property-title p {
  font-size: 18px;
  margin: 0 0 8px;
}

.property-title .rating {
  font-size: 16px;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 45px 0;
}

.host-row,
.feature-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.host-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.host-row h3,
.feature-row h3 {
  font-size: 20px;
  margin: 0 0 4px;
}

.host-row p,
.feature-row p {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0;
}

.feature-icon {
  width: 58px;
  font-size: 34px;
  text-align: center;
}

.description p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.description h3 {
  font-size: 18px;
  margin: 0;
}

.booking-card {
  position: sticky;
  top: 35px;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.booking-card h2 {
  font-size: 22px;
  margin: 0 0 28px;
}

.date-box {
  border: 1px solid #777;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.date-box > div {
  padding: 18px;
}

.date-box > div:first-child {
  border-right: 1px solid #999;
}

.date-box label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.date-box span {
  font-size: 12px;
}

.date-box .muted {
  color: #777;
}

.guests-row {
  grid-column: span 2;
  border-top: 1px solid #999;
  position: relative;
}

.guests-row b {
  position: absolute;
  right: 24px;
  top: 34px;
  font-size: 24px;
}

.booking-card button {
  width: 100%;
  border: none;
  border-radius: 40px;
  padding: 20px;
  /* background: linear-gradient(90deg, #e61e4d, #d70466); */
  /* color: black; */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.report-link {
  display: block;
  text-align: center;
  margin-top: 38px;
  color: #666;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .details-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 24px;
  }

  .booking-card {
    position: static;
  }

  .property-title h2,
  .booking-card h2 {
    font-size: 26px;
  }

  .property-title p,
  .description p {
    font-size: 18px;
  }
}
.booking-card {
  width: 400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  font-family: Arial, Helvetica, sans-serif;
}

.booking-card h2 {
  margin: 0 0 30px;
  font-size: 26px;
  line-height: 1.1;
  color: #222;
}

.booking-fields {
  border: 1px solid #999;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.field {
  padding: 1px 8px;
  cursor: pointer;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.field span {
  display: block;
  font-size: 12px;
  color: #666;
}

.checkin,
.checkout {
  width: 50%;
  float: left;
}

.checkin {
  border-right: 1px solid #999;
}

.guests {
  clear: both;
  /* border-top: 1px solid #999; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guests .arrow {
  font-size: 34px;
  color: #222;
}

.availability-btn {
  width: 100%;
  border: none;
  border-radius: 40px;
  padding: 22px;
  background: linear-gradient(135deg, #208fa3, #34a2b2);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 600px) {
  .booking-card {
    width: 100%;
    padding: 24px;
  }

  .booking-card h2 {
    font-size: 28px;
  }
}
.calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.08);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.calendar-overlay.active {
  display: flex;
}

.calendar-modal {
  width: 500px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  position: relative;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 45px;
}

.calendar-top h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.calendar-top p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.calendar-inputs {
  display: grid;
  grid-template-columns: 120px 120px;
  border: 1px solid #999;
  border-radius: 12px;
  overflow: hidden;
}

.calendar-inputs div {
  padding: 7px 10px;
}

.calendar-inputs .active {
  border: 3px solid #222;
  border-radius: 12px;
}

.calendar-inputs label {
  display: block;
  font-weight: 700;
  font-size: 12px;
}

.calendar-inputs span {
  color: #777;
  font-size: 12px;
}

.calendar-nav {
  position: absolute;
  top: 100px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.calendar-nav button {
  pointer-events: auto;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.month h3 {
  text-align: center;
  font-size: 12px;
  margin-bottom: 25px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  
}

.weekdays span {
  color: #666;font-size: 10px;
  font-weight: 600;
}

.days button {
  border: none;
  background: transparent;
  font-size: 10px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.days button:hover,
.days button.selected {
  background: #222;
  color: #fff;
}

.days button.empty {
  visibility: hidden;
}

.calendar-actions {
 
  display: inline-flex;
 
    gap: 24px;
    margin-top: 0px;
    float: right;
}

.clear-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
}

.close-calendar {
  background: transparent;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
}

.guest-wrapper{
    /* position:relative; */width: 100%;
}

.guest-dropdown{
    position:absolute;
    top:67%;
    left:44px;
    right:0;
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,.15);
    padding:12px 24px;
    margin-top:8px;
    display:none;
    z-index:999;    width: 320px;
}

.guest-dropdown.active{
    display:block;
}

.guest-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.guest-row:last-child{
    border-bottom:none;
}

.guest-row h4{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.guest-row p{
    margin:4px 0 0;
    color:#717171;
    font-size:12px;
}

.counter{
    display:flex;
    align-items:center;
    gap:8px;
}

.counter button{
    width:25px;
    height:25px;
    border-radius:50%;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    font-size:16px;
	padding:0px;
}

.counter span{
    width:20px;
    text-align:center;
    font-size:15px;
}

#guestArrow{
    font-size:14px; float:right;
}

.space-section {
  max-width: 920px;
  padding: 20px 0 60px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.space-section h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.show-more-btn,
.amenities-btn {
 background: #f2f2f2;
    border: none;
    border-radius: 16px;
    padding: 7px 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 40px 0;
}

.space-section h2 {
  font-size: 32px;
  margin-bottom: 34px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 90px;
  margin-bottom: 34px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}

.amenity span {
  line-height: 1.25;
}

.amenity-line.unavailable{
    color:#717171;
}

.amenity-line.unavailable span,
.amenity-line.unavailable strong{
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #222;
}

.amenity-line.unavailable small{
    display:block;
    margin-top:4px;
    color:#717171;
}

.amenities-btn {
  background: #f2f2f2;
}

/* popup */
.space-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.space-popup.active {
  display: flex;
}

.space-popup-box {
  width: 760px;
  max-width: calc(100vw - 32px);
  max-height: 88vh;
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  padding: 36px 42px;
  position: relative;
}

.popup-close {
  position: sticky;
  top: 0;
  width: 38px;
  height: 38px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.space-popup-box h2 {
  font-size: 25px;
  margin: 24px 0;
}

.space-popup-box h3 {
  font-size: 18px;
  margin: 10px 0 12px;
}

.space-popup-box p,
.space-popup-box li {
  font-size: 16px;
  line-height: 1.55;
}

.space-popup-box ul {
  padding-left: 22px;
}

@media (max-width: 700px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .space-popup-box {
    padding: 28px 24px;
  }
}
.amenities-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.amenities-popup.active {
  display: flex;
}

.amenities-box {
  width: 760px;
  max-width: calc(100vw - 30px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 28px 34px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.amenities-close {
  border: none;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
  margin-bottom: 40px;
}

.amenities-box h2 {
  font-size: 25px;
  margin: 0px 0px 35px;
}

.amenity-group {
  margin-bottom: 20px;
}

.amenity-group h3 {
  font-size: 16px;
  margin: 0 0 10px;
}

.amenity-line {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.amenity-line span {
  display: block;
}

.amenity-line small {
  display: block;
  margin-top: 6px;
  color: #717171;
  line-height: 1.35;
}

.amenity-line.not-included span {
  text-decoration: line-through;
}

.amenity-line.not-included small {
  text-decoration: none;
}
.strike {
    text-decoration: line-through;
}

.content small {
    display: block;
    margin-top: 8px;
    text-decoration: none;
    color: #717171;
}
body.popup-open {
  overflow: hidden;
}
.location-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 50px 64px 80px;
  border-top: 1px solid #ddd;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.location-section h2 {
  font-size: 32px;
  margin: 0 0 34px;
}

.location-section p {
  font-size: 24px;
  margin: 0 0 36px;
}

.map-box {
  height: 660px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9);
}

.map-search,
.map-expand,
.map-zoom button {
  position: absolute;
  border: none;
  background: #fff;
  color: #222;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  cursor: pointer;
}

.map-search,
.map-expand {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 30px;
}

.map-search {
  top: 28px;
  left: 28px;
}

.map-expand {
  top: 28px;
  right: 28px;
}

.map-zoom {
  position: absolute;
  top: 130px;
  right: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
}

.map-zoom button {
  position: static;
  width: 58px;
  height: 58px;
  font-size: 34px;
  box-shadow: none;
}

.map-zoom button:first-child {
  border-bottom: 1px solid #ddd;
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #e61e4d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 70px rgba(230, 30, 77, .18);
}

.map-marker span {
  width: 34px;
  height: 34px;
  background: white;
  color: #e61e4d;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .location-section {
    padding: 40px 24px;
  }

  .map-box {
    height: 420px;
  }
}



















    footer {
      padding: 30px 8%;
      background: #f7f5f0;
      text-align: center;
      color: #555;
    }

    @media (max-width: 800px) {
      nav {
        display: none;
      }

   .expedia-tabs {
    overflow-x: auto;
    gap: 34px;
    padding: 0 16px;
  }
    }
.expedia-tabs {
  display: flex;
  gap: 48px;
  border-bottom: 1px solid #ddd;
  margin-top: 0;
}

.expedia-tabs a {
  padding: 20px 6px 18px;
  text-decoration: none;
  color: #111633;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}

.expedia-tabs a.active {
  color: #006ce4;
  border-bottom-color: #006ce4;
}
.hidden-policies {
  display: none;
}

.hidden-policies.active {
  display: block;
}



.policies-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 55px 64px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 80px;
  border-top: 1px solid #ddd;
  font-family: Arial, Helvetica, sans-serif;
  color: #06113a;
}

.policies-section h2 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
}

.policies-content h3 {
  font-size: 20px;
  margin: 0 0 22px;
  font-weight: 700;
}

.policies-content p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 14px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-bottom: 22px;
}

.policy-block {
  margin-bottom: 22px;
}

.policies-link {
  color: #0057ff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.policies-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .policies-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 28px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .policies-section h2 {
    font-size: 32px;
  }

  .policies-content h3 {
    font-size: 24px;
  }

  .policies-content p {
    font-size: 18px;
  }
}
  input, select, textarea {width:100%; padding:10px; margin:10px 0px; border:1px solid #ccc; border-radius:5px;}
  .checkbox {width:5% !important;}
  .checkbox-group {margin-top:10px;}
  .checkbox-group label {font-weight:normal;}
label{margin-top:10px !important;}

/* policy details start*/
 :root{
      --bg:#f7f4ef; --card:#ffffff; --ink:#1f2933; --muted:#667085; --brand:#208fa3; --brand-dark:#208fa3; --line:#f0dce7; --soft:#fbf8f3; --green:#2f6f4e;
    }
    *{box-sizing:border-box} body{margin:0;font-family:Inter,Arial,sans-serif;background:linear-gradient(180deg,#fbf8f3 0%,#f7f4ef 100%);color:var(--ink);line-height:1.55}
    .policy-section{max-width:1180px;margin:0 auto;padding:56px 20px 72px}
    .hero{background:linear-gradient(135deg, #208fa3, #34a2b2), center / cover;border-radius:28px;padding:44px 34px;color:#fff;box-shadow:0 20px 50px rgba(95,59,25,.18);position:relative;overflow:hidden}
    .hero:after{content:"";position:absolute;right:-80px;top:-80px;width:260px;height:260px;border-radius:50%;background:rgba(255,255,255,.12)}
    .eyebrow{text-transform:uppercase;letter-spacing:.16em;font-size:12px;font-weight:700;opacity:.9;margin-bottom:10px}.hero h1{margin:0;font-size:clamp(30px,5vw,52px);line-height:1.08}.hero p{max-width:760px;margin:18px 0 0;font-size:17px;opacity:.96}
    .quickbar{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:22px 0 0}.quick{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);border-radius:18px;padding:15px}.quick strong{display:block;font-size:14px}.quick span{font-size:13px;opacity:.9}
    .layout{display:grid;grid-template-columns:290px 1fr;gap:24px;margin-top:26px}.side{position:sticky;top:18px;align-self:start;background:var(--card);border:1px solid var(--line);border-radius:24px;padding:18px;box-shadow:0 14px 40px rgba(31,41,51,.06)}
    .side h3{margin:0 0 12px;font-size:16px}.nav a{display:block;text-decoration:none;color:var(--muted);padding:10px 12px;border-radius:12px;font-size:14px}.nav a:hover{background:var(--soft);color:var(--brand-dark)}
    .cta-box{margin-top:16px;background:var(--soft);border-radius:18px;padding:16px;border:1px solid var(--line)}.cta-box p{margin:0 0 12px;color:var(--muted);font-size:13px}.btn{display:inline-block;width:100%;text-align:center;background:var(--brand);color:#fff;text-decoration:none;border-radius:14px;padding:12px 14px;font-weight:700;border:0;cursor:pointer}.btn:hover{background:var(--brand-dark)}
    .content{display:grid;gap:16px}.card{background:var(--card);border:1px solid var(--line);border-radius:24px;box-shadow:0 14px 40px rgba(31,41,51,.055);overflow:hidden}.card-header{padding:20px 22px;display:flex;justify-content:space-between;gap:16px;align-items:center;cursor:pointer}.card-header h2{font-size:20px;margin:0}.card-header small{display:block;color:var(--muted);font-size:13px;margin-top:4px}.icon{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:var(--soft);color:var(--brand);font-weight:800;flex-shrink:0}.panel{display:none;border-top:1px solid var(--line);padding:0 22px 22px}.card.open .panel{display:block}.policy-list{display:grid;gap:10px;margin-top:16px}.policy{display:grid;grid-template-columns:210px 1fr;gap:14px;background:#fff;border:1px solid #f0e7dc;border-radius:16px;padding:14px}.policy b{color:var(--brand-dark)}.policy span{color:var(--muted)}
    .accept{margin-top:24px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:22px;box-shadow:0 14px 40px rgba(31,41,51,.055)}.accept label{display:flex;gap:12px;align-items:flex-start;color:var(--muted)}.accept input{margin-top:4px;transform:scale(1.15)}.accept .btn{margin-top:16px;max-width:280px}.note{font-size:13px;color:var(--muted);margin-top:12px}.badge{display:inline-block;background:#eff8f2;color:var(--green);border:1px solid #d9efdf;padding:5px 10px;border-radius:999px;font-size:12px;font-weight:700;margin-bottom:12px}
    @media(max-width:860px){.quickbar{grid-template-columns:1fr 1fr}.layout{grid-template-columns:1fr}.side{position:relative;top:auto}.policy{grid-template-columns:1fr}.hero{padding:34px 22px}.policy-section{padding-top:28px}}
    @media(max-width:520px){.quickbar{grid-template-columns:1fr}.card-header{align-items:flex-start}.policy-section{padding-left:14px;padding-right:14px}}
/* policy details end*/

.sm-pho{
    grid-column:2;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}
.sm-pho img{width:400px; height:280px;}


.sm-photo:not(:first-child){

   height:280px;
}

.sm-photo{
    width:100%;
    object-fit:cover;
    border-radius:16px;
}
.feature-list{
    display:flex;
    flex-direction:column;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid #ebebeb;
}

.feature-item:last-child{
    border-bottom:none;
}

.feature-icon{
    width:42px;
    min-width:42px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    font-size:24px;
    color:#222;
    margin-top:4px;
}

.feature-content h3{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin:0 0 6px;
}

.feature-content p{
    margin:0;
    font-size:15px;
    line-height:1.5;
    color:#717171;
}
.sleep-section{
    margin:70px 0;
}

.sleep-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.sleep-header h2{
    font-size:32px;
    margin:0;
}

.sleep-nav{
    display:flex;
    align-items:center;
    gap:16px;
}

.sleep-counter{
    font-size:15px;
    font-weight:500;
    color:#222;
}

.sleep-nav .slider-btn{
    position:static;
    width:42px;
    height:42px;
    border:1px solid #ddd;
    border-radius:50%;
    background:#fff;
    box-shadow:none;
    cursor:pointer;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:none;
}

.sleep-nav .slider-btn:hover{
    background:#f7f7f7;
}

.sleep-nav .slider-btn:disabled{
    color:#ccc;
    border-color:#eee;
    cursor:not-allowed;
}

.sleep-slider{
    position:relative;
    overflow:hidden;
}

.sleep-page{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.sleep-page.active{
    display:grid;
}

.sleep-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:16px;
    display:block;
}

.sleep-card h3{
    margin:16px 0 4px;
    font-size:18px;
    font-weight:600;
}

.sleep-card p{
    margin:0;
    color:#666;
    font-size:15px;
}

@media (max-width:700px){
  .sleep-page{
      grid-template-columns:1fr;
  }
  .sleep-header{
      flex-direction:column;
      align-items:flex-start;
      gap:14px;
  }
}
.photo-tour-wrap {
  scroll-behavior: smooth;
}
.thanks{
    font-family:'Inter',sans-serif;
    background:#f8f6f2;
    color:#333;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.thanks-thankyou-container{
    max-width:800px;
    width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.thanks-hero{
    background:linear-gradient(rgba(40,40,40,0.55),rgba(40,40,40,0.55)),
    url('https://escape2paradise.com.au/img/paradise.avif');
    background-size:cover;
    background-position:center;
    text-align:center;
    padding:80px 30px;
    color:#fff;
}

.thanks-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#fff;
    color:#1c7c3e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:bold;
}

.thanks-hero h1{
    font-family:'Playfair Display',serif;
    font-size:48px;
    margin-bottom:15px;
}

.thanks-hero p{
    max-width:600px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
}

.thanks-content{
    padding:50px 40px;
}

.thanks-content h2{
    font-family:'Playfair Display',serif;
    color:#222;
    margin-bottom:15px;
}

.thanks-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}
.thanks-content ul li{list-style:none}
.thanks-info{
    background:#fdfff0;
    border-left:4px solid #636b2f;
    padding:25px;
    margin:30px 0;
    border-radius:12px;
    text-align:left;
}

.thanks-info strong{
    color:#222;
}

.thanks-footer{
    border-top:1px solid #eee;
    padding:25px;
    text-align:center;
    font-size:14px;
    color:#777;
}



@media(max-width:768px){
     .thanks-hero h1{
        font-size:36px;
    }

    .thanks-content{
        padding:35px 25px;
    }
}

.video-section{
    margin:60px 0;
    padding-bottom:50px;
    border-bottom:1px solid #ddd;
}

.video-section h2{
    font-size:32px;
    font-weight:600;
    margin-bottom:24px;
    color:#222;
}

.video-wrapper{
   position:relative;
    width:100%;
    max-width:90%;
    border-radius:16px;
    overflow:hidden; margin:0 auto;
}

.video-wrapper video{
    width:100%;
    display:block;
    border-radius:16px;
}
.video-wrapper{
    
}

.video-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
}