:root {
  /* Benjamin Moore Colors */
  --ancient-ivory: #f3eee2; /* OC-133 Ancient Ivory */
  --mulberry: #6c2343; /* 2075-20 Mulberry */
  --exotic-purple: #4e1280; /* 2071-10 Exotic Purple */
  --hero-color: rgba(61, 60, 60, 0.6);
  /* You can also add tints and shades for more flexibility */
  --ancient-ivory-light: #f8f5ed;
  --mulberry-light: #8c3c60;
  --exotic-purple-light: #6a2da0;
  --exotic-purple-gradient: linear-gradient(
    rgba(78, 18, 128, 0.8),
    rgba(78, 18, 128, 0.9)
  );

  /* And background variations with transparency */
  --exotic-purple-bg: rgba(78, 18, 128, 0.05);
  --mulberry-bg: rgba(108, 35, 67, 0.05);

  --primary-color: #4e1280; /* Exotic Purple 2071-10 */
  --primary-dark: #3a0e60;
  --primary-light: #e9dff2;
  --secondary-color: #64748b;
  --text-dark: black;
  --text-light: #f8fafc;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition: all 0.3s ease;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
body {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.hero-home {
  background-image: url(/images/IMG_1380.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  height: 70vh; /* Adjust this value as needed */
}
@media (max-width: 768px) {
  .hero-home {
    height: 70vh; /* Taller on mobile devices */
  }
}

/* Even taller on very small screens */
@media (max-width: 576px) {
  .hero-home {
    height: 80vh; /* Maximum height on very small screens */
  }
}
.hero-home::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}

nav {
  position: relative;
  background-color: #ffffff; /* Your white background */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove any shadow */
}

nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px; /* Slightly thinner for subtlety */
  background: linear-gradient(
    to right,
    #4e1280,
    /* Exotic Purple */ #6a2da0,
    /* Slightly lighter Exotic Purple */ #4e1280,
    /* Back to Exotic Purple */ #6a2da0
  );
}
.navbar {
  background-color: #ffffff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: none; /* Remove shadow */
}

.section-grey {
  background-color: #f5f5f5; /* Light grey sections */
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-grey-nopadding {
  background-color: #f5f5f5; /* Light grey sections */
}
.section-white {
  background-color: white; /* Light grey sections */
  padding-top: 50px;
  padding-bottom: 50px;
}
.nav-link {
  color: var(--exotic-purple);
  text-transform: uppercase;
  font-weight: 600; /* Changed from bold to 600 */
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link.active {
  color: var(--exotic-purple) !important;
  font-weight: 800 !important; /* Changed from bolder to 800 */
  /* You could also add a subtle visual cue like: */
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav-link:hover {
  color: var(--exotic-purple);
  background-color: var(--exotic-purple-bg);
  border-radius: 4px;
}

.navbar-brand .logo-img {
  height: 80px;
  width: auto;
}

/* For smaller screens */
@media (max-width: 768px) {
  .navbar-brand .logo-img {
    height: 60px;
  }

  .nav-link {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.action-buttons .btn {
  background-color: var(--green-color-700); /* Dark blue button background */
  color: #fff; /* White text */
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px; /* Rounded corners for buttons */
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  margin: 0 10px; /* Spacing between buttons */
}

.action-buttons .btn:hover {
  background-color: var(--green-color-700); /* Slightly darker blue on hover */
  transform: translateY(-2px);
}

/* footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative; 
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px; 
  background: linear-gradient(
    to right,
    var(--green-color-500),
    var(--green-color-600),
    var(--green-color-700),
    var(--green-color-500)
  );
}
.logo-margin {
  margin-top: 120px;
}
.logo-footer {
  width: 250px;
  height: auto;
}

.nav-link:focus {
  color: white;
}
.footer-link {
  text-decoration: none;
  color: white;
}
.footer-link:hover {
  color: var(--green-color-700) !important;
} */

/* Updated Footer Styling */
footer {
  background-color: white; /* Match navbar white background */
  color: var(--exotic-purple); /* Match navbar text color */
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative; /* For the border positioning */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px; /* Same as navbar */
  background: linear-gradient(
    to right,
    #4e1280,
    /* Exotic Purple */ #6a2da0,
    /* Slightly lighter Exotic Purple */ #4e1280,
    /* Back to Exotic Purple */ #6a2da0 /* End with lighter shade */
  );
}

/* Update footer links to match navbar styling */
.footer-link {
  text-decoration: none;
  color: var(--exotic-purple);
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.footer-link:hover {
  color: var(--exotic-purple-light) !important;
}

/* Footer headings */
footer h5,
footer .h5 {
  color: var(--exotic-purple);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Social media icons */
footer .social-icon {
  color: var(--exotic-purple);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

footer .social-icon:hover {
  transform: translateY(-3px);
}

/* Footer dividers */
footer hr {
  border-color: rgba(78, 18, 128, 0.1);
  margin: 2rem 0;
}

/* Copyright text */
footer .copyright {
  color: var(--text-dark);
  font-size: 0.9rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237A41AD' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: white;
}
/* Use a medium grey for the bottom border of the tab container */
.property-tabs-style {
  border-bottom: 2px solid #6c757d;
}

.property-tabs-style .nav-item {
  margin-bottom: -2px;
}

.property-tabs-style .nav-link {
  color: #6c757d; /* Inactive tabs text in grey */
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  padding: 0.6rem 1.1rem;
  margin-right: 3px;
  border-radius: 0.3rem 0.3rem 0 0;
  font-weight: 500;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

/* Hover state for inactive tabs */
.property-tabs-style .nav-link:not(.active):hover {
  color: #343a40; /* Darker grey */
  background-color: #f8f9fa; /* Light grey background */
  border-color: #ced4da #ced4da transparent #ced4da;
}

/* Active tab style */
.property-tabs-style .nav-link.active {
  color: #ffffff !important; /* White text */
  background-color: #343a40; /* Dark grey background for active tab */
  border-color: #343a40 #343a40 transparent #343a40;
  font-weight: 600;
}

/* 
this is the property css */

/* Main Container */
.property-details-container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: #f0f0f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding-top: 10px;
}

.property-quick-info {
  position: fixed;
  bottom: 20px; /* Changed from top to bottom */
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease-in-out;
}
.property-quick-info:hover {
  transform: translateY(-5px);
}

.price-badge {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: var(--radius-md);
}

.info-pills {
  display: flex;
  gap: 10px;
}

.info-pills span {
  background: var(--bg-white);
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.btn-inquire {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-inquire:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-hover:hover {
  transition: var(--transition);
}
.btn-hover:hover {
  transform: translateY(-2px);
}
/* Hero Section */
.property-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-hero:hover .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px;
  color: white;
}

.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.property-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.property-location {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

/* Feature Icons */
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin: -40px 30px 30px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition);
}

.feature-icon:hover .icon-circle {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary-color);
  color: white;
}

.icon-circle i {
  font-size: 28px;
  color: var(--primary-color);
  transition: var(--transition);
}

.feature-icon:hover .icon-circle i {
  color: white;
}

.icon-text {
  text-align: center;
}

.icon-text .number {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  color: var(--text-dark);
}

.icon-text .label {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* Content Area */
.property-content {
  width: 100%;
  padding: 0 30px 50px;
}

/* Tabs */
.content-tabs {
  margin-top: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-white);
}

.tab-btn {
  padding: 20px 30px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  min-height: 300px;
}

.tab-pane {
  display: none;
  padding: 40px;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Description Tab */
.description-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.description-content p {
  margin-bottom: 20px;
}

.inquire-button-container {
  margin-top: 40px;
  text-align: center;
}

.btn-cta {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.btn-close.inquiry-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
}

.btn-close.inquiry-close:hover {
  opacity: 1;
}
.btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Photos Tab */
.photos-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.spinner {
  margin: 20px auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 100%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.photo-gallery {
  margin: 0;
}

.gallery-item {
  margin-bottom: 0;
}

.photo-frame {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.photo-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-img-wrapper {
  position: relative;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is crucial for uniform image display */
  transition: transform 0.5s ease;
}

.photo-frame:hover .gallery-image {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .card-img-wrapper {
    padding-top: 66.67%; /* 3:2 aspect ratio for medium screens */
  }
}

@media (max-width: 576px) {
  .card-img-wrapper {
    padding-top: 56.25%; /* 16:9 aspect ratio for small screens */
  }
}
.no-photos,
.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: var(--secondary-color);
  gap: 20px;
}

.no-photos i,
.error-message i {
  font-size: 3rem;
}

.btn-retry {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.btn-retry:hover {
  background: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .property-quick-info {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
    justify-content: space-between;
  }

  .property-hero {
    height: 50vh;
  }

  .feature-icons {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .feature-icon {
    width: 45%; /* This creates a two-column layout */
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .property-title {
    font-size: 2rem;
  }

  .tab-btn {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .tab-pane {
    padding: 30px 20px;
  }

  .feature-icons {
    margin: -30px 20px 20px;
    padding: 30px 15px;
  }

  .property-content {
    padding: 0 20px 40px;
  }
}

@media (max-width: 576px) {
  .property-hero {
    height: 40vh;
    min-height: 300px;
  }

  .hero-overlay {
    padding: 20px;
  }

  .feature-icon {
    width: 100%;
  }

  .info-pills {
    display: none;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .icon-circle {
    width: 50px; /* Make icons smaller on mobile */
    height: 50px;
  }

  .icon-circle i {
    font-size: 20px;
  }

  .icon-text .number {
    font-size: 1.2rem;
  }

  .icon-text .label {
    font-size: 0.8rem;
  }
}
.feature-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

@media (min-width: 993px) {
  .feature-icons {
    flex-wrap: nowrap;
    justify-content: space-around;
  }

  .feature-row {
    width: 50%; /* Each row takes half the width on large screens */
    justify-content: space-around;
  }

  .feature-icon {
    width: auto; /* Let icons size naturally on larger screens */
  }
}

@media (max-width: 992px) {
  .feature-row {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .feature-row {
    gap: 15px;
  }

  .feature-icon {
    width: 45%; /* Two column layout on small mobile */
  }
}

.inquiry-modal {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.inquiry-header {
  background-color: var(--primary-color);
  border-bottom: none;
  padding: 1.5rem;
  color: white;
}

.inquiry-title-container {
  width: 100%;
}

.inquiry-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.inquiry-subtitle {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.inquiry-close {
  color: white;
  opacity: 0.8;
  filter: brightness(5);
}

.inquiry-close:hover {
  opacity: 1;
}

.inquiry-body {
  padding: 1.75rem;
  background-color: var(--bg-light);
}

.inquiry-form-group {
  margin-bottom: 1.25rem;
}

.inquiry-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.inquiry-input,
.inquiry-textarea {
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.inquiry-input:focus,
.inquiry-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

.inquiry-privacy-notice {
  color: var(--secondary-color);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

.inquiry-privacy-notice a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.inquiry-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: white;
}

/* .inquiry-cancel {
  font-weight: 600;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  background-color: transparent;
  color: var(--secondary-color);
}

.inquiry-cancel:hover {
  background-color: #f1f5f9;
} */

.inquiry-submit {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.inquiry-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.inquiry-submit i {
  transition: transform 0.2s ease;
}

.inquiry-submit:hover i {
  transform: translateX(3px);
}

/* Slight animation for the modal */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* BELOW CSS IS FOR THE PROPERTIES CARD IN THE INDEX.HTML */

.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

/* Image container with fixed aspect ratio */
.property-img-container {
  position: relative;
  padding-top: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
}

.property-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-img-container img {
  transform: scale(1.05);
}

/* Style for the view details button */
.view-home-btn {
  display: inline-flex;
  align-items: center;
}

.view-home-btn i {
  transition: transform 0.2s ease;
}

.view-home-btn:hover i {
  transform: translateX(4px);
}

/* Badge hover */
.property-card .badge {
  transition: all 0.2s ease;
}

.property-card:hover .badge.bg-primary {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* this is for the renter application */

@media (max-width: 576px) {
  .card-body {
    padding: 1rem;
  }

  h5 {
    font-size: 1.1rem;
  }
}

/* Optional visual feedback for form validation */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.form-section {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.form-section:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.section-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 8px;
  margin-right: 12px;
}

.form-control,
.form-select {
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
}

.property-preview-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.property-preview-card:hover {
  transform: translateY(-5px);
}

/* Progress indicator */
.progress {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

/* Form check customization */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.purple {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

/*override styles */
.btn-primary,
.bg-primary {
  background-color: var(--exotic-purple) !important;
  border-color: var(--exotic-purple) !important;
}
.btn-outline-primary {
  border-color: var(--exotic-purple) !important;
  color: var(--exotic-purple) !important;
}
.btn-outline-primary:hover {
  background: var(--exotic-purple-gradient) !important;

  color: white !important;
}
.text-primary {
  color: var(--exotic-purple) !important;
}

.border-primary {
  border-color: var(--exotic-purple) !important;
}

/* Form Elements */
.form-check-input:checked {
  background-color: var(--exotic-purple) !important;
  border-color: var(--exotic-purple) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--exotic-purple) !important;
  box-shadow: 0 0 0 0.25rem rgba(78, 18, 128, 0.25) !important;
}

/* Background Colors */
.ancient-ivory-bg {
  background-color: #f3eee2 !important;
}

.mulberry-bg {
  background-color: #6c2343 !important;
}

.exotic-purple-bg {
  background-color: #4e1280 !important;
}

.exotic-purple-light-bg {
  background-color: rgba(78, 18, 128, 0.1) !important;
}

.mulberry-light-bg {
  background-color: rgba(108, 35, 67, 0.1) !important;
}

/* Text Colors */
.ancient-ivory-text {
  color: #f3eee2 !important;
}

.mulberry-text {
  color: #6c2343 !important;
}

.exotic-purple-text {
  color: #4e1280 !important;
}

/* Border Colors */
.ancient-ivory-border {
  border-color: #f3eee2 !important;
}

.mulberry-border {
  border-color: #6c2343 !important;
}

.exotic-purple-border {
  border-color: #4e1280 !important;
}

/* Button Colors */
.exotic-purple-btn {
  background-color: #4e1280 !important;
  border-color: #4e1280 !important;
  color: white !important;
}

.mulberry-btn {
  background-color: #6c2343 !important;
  border-color: #6c2343 !important;
  color: white !important;
}

/* Outline Button Colors */
.exotic-purple-outline-btn {
  background-color: transparent !important;
  border-color: #4e1280 !important;
  color: #4e1280 !important;
}

.exotic-purple-outline-btn:hover {
  background-color: #4e1280 !important;
  color: white !important;
}

.mulberry-outline-btn {
  background-color: transparent !important;
  border-color: #6c2343 !important;
  color: #6c2343 !important;
}

.mulberry-outline-btn:hover {
  background-color: #6c2343 !important;
  color: white !important;
}

/* Review carousel styling */
#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#reviewCarousel .carousel-item {
  padding: 10px;
}

#reviewCarousel .carousel-control-prev {
  left: -15px;
}

#reviewCarousel .carousel-control-next {
  right: -15px;
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
  background-color: var(--exotic-purple);
}

/* Make the review containers have consistent height */
#reviewCarousel .carousel-item {
  min-height: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #reviewCarousel .carousel-control-prev {
    left: -5px;
  }

  #reviewCarousel .carousel-control-next {
    right: -5px;
  }

  #reviewCarousel .card-body {
    padding: 1.5rem;
  }
}
.custom-margin {
  margin-top: 130px;
}
.custom-margin2 {
  margin-top: 80px;
}
.circle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--exotic-purple);
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}
/* Footer logo styling */
.logo-footer {
  max-width: 280px;
  height: auto;
  margin-bottom: 1rem;
}
/* Footer logo styling */
.logo-footer {
  max-width: 280px;
  height: auto;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  footer .col-lg-4,
  footer .col-md-4,
  footer .col-lg-3,
  footer .col-lg-2 {
    text-align: center !important;
  }

  footer ul.list-unstyled {
    display: inline-block;
    text-align: left;
  }

  footer .social-icons {
    justify-content: center !important;
  }
}

/* Additional styles specific to the properties page */

.property-banner {
  background: linear-gradient(rgba(78, 18, 128, 0.8), rgba(78, 18, 128, 0.9));
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
}

.filters-bar {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.view-toggle .btn.btn-outline-primary.active {
  background: var(
    --exotic-purple-gradient
  ) !important; /* Your purple color variable */
  color: white !important;
  border-color: var(--exotic-purple) !important;
}

/* For the icon inside the active button */
.view-toggle .btn.btn-outline-primary.active i {
  color: white !important;
}

/* Hover state for consistency */
.view-toggle .btn.btn-outline-primary:hover {
  background-color: var(--exotic-purple);
  color: white;
  border-color: var(--exotic-purple);
}
.bg-primary-gradient {
  background: var(--exotic-purple-gradient) !important;
}
.bg-primary-gradient:hover {
  background: var(--exotic-purple-gradient) !important;
}

/* //////////////////////////////////// */

.gallery-item {
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Remove any default link styling */
.gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.savage-home {
  /* background-image: url(/images/IMG_1380.jpg); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  height: 70vh; /* Adjust this value as needed */
}
@media (max-width: 768px) {
  .savage-home {
    height: 60vh; /* Taller on mobile devices */
  }
}

/* Even taller on very small screens */
@media (max-width: 576px) {
  .savage-home {
    height: 50vh; /* Maximum height on very small screens */
  }
}
.savage-home::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--hero-color);
  z-index: -1;
}
.info-pill-single {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
}

.info-pill-single i {
  margin-right: 5px;
}
.custom-header-margin {
  margin-top: 100px;
}
