/* Extras */

.divider {
    border: none;
    height: 1px;
    margin: 70px 0;
    background: #094065;
    border-radius: 1px;
}


/* Property Details Page */
.propertyImage {
    width: 100%;
    aspect-ratio: 4 / 3; /* Change to suit your design */
    overflow: hidden;
    border-radius: 0.5rem; /* matches Bootstrap rounded */
}

.propertyImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#bookNowBtn {
    background: linear-gradient(135deg, #0f3057, #00587a);
	color:white;
	transition: filter 0.15s ease-in-out;
}

#bookNowBtn:hover{
	filter: brightness(1.15);
}

/* SECTION WRAPPER */
.property-highlights {
	padding-top: 0px;
	padding-bottom: 40px;
}

.property-highlights-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* CARD */
.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    min-width: 240px;
    flex: 1 1 240px;
}

/* Hover effect */
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ICON CONTAINER */
.highlight-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 18px;
    color: #1e3a5f; /* your brand colour */
}

/* TEXT STYLING */
.highlight-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 4px;
}

.highlight-value {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}
.property-details-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
 

.upsell-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Card */
.upsell-container .card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.upsell-container .card:hover {
  transform: translateY(-5px);
}

/* Property info wrapper */
.upsell-container .propertyInfo {
  display: flex;
  flex-direction: column;
}

/* Titles */
.upsell-container .titles h2 {
  margin: 0;
  font-size: 18px;
}

.upsell-container .titles sub {
  color: #666;
  font-size: 12px;
}

/* Image */
.upsell-container img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}

/* Icons */
.upsell-container .icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
  font-size: 14px;
}

/* Description */
.upsell-container p {
  font-size: 14px;
  color: #444;
}

/* Link */
.upsell-container .details-link a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
	color:white !important;
}

/* Status colours */
.upsell-container .txt-green {
  color: green;
}

.upsell-container .txt-red {
  color: red;
}
 









