
/* Form CSS Start */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  font-family: Arial, sans-serif;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Heading */
.modal-content h2 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
}

/* Label */
.label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

/* Phone input */
/* .phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
} */
/* input[type="text"] {
  background-color: transparent; 
  border: none;
  color: white;
  font-size: 14px;
  width: 100%;
  outline: none;
}

input[type="text"]::placeholder {
  color: #ccc;
}

.country-code {
  margin-right: 8px;
  font-weight: bold;
  color: #333;
}

.phone-input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
} */

/* Continue button */
.submit-btn {
  background-color: #002D74;
  color: white;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 15px;
}

.submit-btn:hover {
  background-color: #0043a3;
}

/* Terms text */
.terms-text {
  font-size: 12px;
  text-align: center;
  color: #666;
}

.terms-text a {
  color: #0043a3;
  text-decoration: underline;
}

/* Form CSS END */

/* Modal Gallery CSS Start */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow-y: auto;
}

.modal-content.wide-slider {
  margin: 40px auto;
  max-width: 90vw;         
  width: 1200px;
  text-align: center;
  position: relative;
   background: transparent;
}

.slide-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
}

.mySlides {
  display: none;
}

.numbertext {
  position: absolute;
  top: 10px;
  left: 20px;
  /* background: #000; */
  color: #fff;
  padding: 6px 12px;
  font-size: 15px;
  border-radius: 4px;
  z-index: 10;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 15px;
  transform: translateY(-50%);
  user-select: none;
  z-index: 1000; /* ensure it's on top */
}

.prev { left: 10px; }   /* 🔧 moved inside view */
.next { right: 10px; }  /* 🔧 moved inside view */



.thumbnail-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.thumbnail-row img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumbnail-row img:hover,
.thumbnail-row img.active {
  opacity: 1;
  border-color: #f90;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  /* background-color: #C18F2D; */
  /* border-radius: 70%; */
}

/* Modal Gallery CSS End */

ul li
{
  font-size:17px;
}


.icon-box
{
  background-color:#1D2D22;
      width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

h2
{
  font-weight:bold;
  color:#C18F2D;
  font-size: calc(1.325rem + .9vw);
}
.property-location
{
  font-weight:bold;
}

.amenity-pill
{
  color:#1D2D22;
  font-size:18px;
}

/* TRAIL CSS  */



.property-title h1 {
    margin: 0;
    font-size: 28px;
}

.property-location {
    color: #555;
    font-size: 16px;
    margin-top:5px;
}

.contact-btn {
    background-color: #C18F2D;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    /* margin-top:-100px; */
}

.contact-btn:hover {
    background-color: #a97e25;
}

/* ===== Image Styling ===== */
.main-image img, .side-images img, .slide-img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.side-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.side-images img {
    flex: 1;
    max-width: 48%;
}

.more-images {
    position: relative;
    cursor: pointer;
}

.more-images .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
}


.pricing-row, .pricing-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-total.bold {
    font-weight: bold;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* ===== Modal Styling ===== */
.modal {
    display: none; /* Set to 'block' to show */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.slide-img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.thumbnail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.thumbnail-row img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.cursor {
    cursor: pointer;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    padding: 16px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}
.next {
    right: 0;
}

/* MEDIA QUERY START */
/* Extra Large Screens (≥1200px) */
@media (min-width: 1200px) {
  .highlights-card, .poster-box {
    margin-bottom: 0;
  }
}

/* Large Screens (992px - 1199px) */
@media (max-width: 1199.98px) {
  .highlights-card, .poster-box {
    margin-bottom: 20px;
  }
}

/* Medium Screens (768px - 991px) */
@media (max-width: 991.98px) {
  .col-lg-8, .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .poster-box {
    margin-top: 20px;
  }

  .highlights-card h2,
  .poster-header strong {
    font-size: 22px;
  }

  .highlights-card .icon-box {
    font-size: 18px;
  }
}

/* Small Screens (576px - 767px) */
@media (max-width: 767.98px) {
  .highlights-card .icon-box {
    font-size: 16px;
  }

  .highlights-card strong {
    font-size: 14px;
  }

  .poster-img {
    width: 45px;
    height: 45px;
  }

  .poster-box button {
    font-size: 14px;
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .property-details-card {
    margin-left: 0 !important;
  }
}

.property-details-card,
    .furnishing-box,
    .amenities-box,
    .description-box {
        background-color: #fff;
        border-radius: 15px;
        border: 1px solid #eee;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        max-width: 730px;
        /* margin-left: 120px; */
    }

    
@media (max-width: 768px) {
  .property-details,
  .furnishing-box,
  .amenities-box,
  .description-box {
    width: 100% !important;  /* Force full width */
    max-width: 100% !important;
    box-sizing: border-box;
    margin-left: 0;  
    /* margin-right: 0; */
  }
}



    /* 🔁 Responsive Media Queries */

/* Tablet & Below */
@media (max-width: 991.98px) {
  .pricing-col {
    width: 100%;
    /* margin-top: 20px; */
  }

  .pricing-box {
    font-size: 15px;
    padding: 18px;
  }

  .pricing-box h2 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .pricing-box {
    padding: 15px;
    margin-top: 20px;
  }

  .pricing-box h2 {
    font-size: 25px;
  }

  .pricing-row span:last-child,
  .pricing-total span:last-child {
    align-self: flex-end;
    font-weight: 500;
    margin-top: 4px;
  }

  .note {
    font-size: 12px;
  }
}

/* MEDIA QUERY END */

    .note {
        font-size: 0.85rem;
        color: #555;
        margin-top: 15px;
    }
/* #property #furnished #amenities #description
{
  max-width:1480px !important;
} */
@media (min-width: 992px) {
  .pricing-box {
    margin-top: 10px;
  }
}


@media (max-width: 991.98px) {
    .pricing-box {
        position: static;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
  #pricingStickyBox {
    position: static !important;
  }
}


/* Today Trail */
/* .photo-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
} */

@media (min-width: 768px) and (max-width: 991px) {
  #pricingStickyBox {
    position: static !important;
    top: auto;
    right: auto;
    width: 100% !important;
    margin-top: 1rem;
    z-index: auto;
  }
}
.pricing-box
{
    position: relative;
  min-height: 400px; 
}

/* Default (small screens) - no change */
#highlights {
  margin-top: 0;
  position: static;
}




/* Contact Section Background and Base Styling */
.contact-section {
  background-color: #000;
  background-image: url(''); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 15px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Headings */
.contact-section h3.section-title {
  color: #f5a623; /* Gold color */
  font-weight: bold;
}

.contact-section h3,
.contact-section h5 {
  font-weight: bold;
}

/* Info box paragraph spacing */
.info-box p {
  margin-bottom: 8px;
}

/* Inputs and textarea */
.contact-section .form-control,
.contact-section textarea {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  font-size: 16px;
}

.contact-section .form-control::placeholder {
  color: #bbb;
}

.contact-section .form-control:focus,
.contact-section textarea:focus {
  border-color: #f5a623;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
}

/* Send button */
.send-btn {
  background-color: #f5a623;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border-radius: 2px;
}

.send-btn:hover {
  background-color: #d98d1c;
  color: #fff;
}

/* Optional: Adjust spacing between columns on large screens */
@media (min-width: 992px) {
  .pe-lg-5 {
    padding-right: 6rem !important;
  }
  .ps-lg-5 {
    padding-left: 6rem !important;
  }
}


/* Leave Your Details here */
/* .phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid white;
  padding: 8px 12px;
  width: 100%;
} */

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid white;
  padding: 8px 12px;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}


.phone-input-wrapper:focus-within {
  background-color: #e6efff;
}


/* .phone-input-wrapper select,
.phone-input-wrapper input {
  background-color: transparent;
  border: none;
  color: white;  
  font-size: 14px;
  outline: none;
  flex: 1;
} */


.phone-input-wrapper:focus-within select,
.phone-input-wrapper:focus-within input {
  color: black;
}


.phone-input-wrapper input::placeholder {
  color: #999;
}

.country-select option {
  background-color: black;
  color: white;
}

.country-select {
  background: transparent;
  border: 1px solid transparent; 
  color: white;
  font-size: 14px;
  margin-right: 10px;
  padding: 5px;                 
  border-radius: 3px;
  box-sizing: border-box;     
  cursor: pointer;
}

.country-select:hover {
  border-color: white;         
  background-color: rgba(255, 255, 255, 0.1); 
}


.country-select option {
  background-color: black;
  color: white;
}

.country-select:focus {
  outline: none;
}

.form-control {
  background: transparent;
  border: none;
  color: #000;
  font-size: 14px;
  width: 100%;
}

.form-control::placeholder {
  color: #ccc;
}

.form-control:focus {
  outline: none;
}

input[type="text"] {
  background-color: transparent; 
  border: none;
  color: white;
  font-size: 14px;
  width: 100%;
  outline: none;
}

input[type="text"]::placeholder {
  color: #ccc;
}

.country-code {
  margin-right: 8px;
  font-weight: bold;
  color: #333;
}

.phone-input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}



@media (max-width: 480px) {
  #access {
    border: 1px solid white; 
    padding: 10px;          
  }
}


#pricingStickyBox {
  /* width: 100%; */
  /* padding: 10px; */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.col-lg-4 {
  position: relative;
}
