    body {
        font-family: 'Segoe UI', sans-serif;
        background: #f7f7f7;
        margin: 0;
        color: #333;
    }
    .container {
        max-width: 1100px;
        margin: auto;
        padding: 20px;
    }
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    .header h1 {
        font-size: 28px;
        color: #b30000;
        margin: 0;
    }
    .buttons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    .btn {
        background: linear-gradient(45deg, #b30000, #e60000);
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }
    .btn:hover {
        opacity: 0.9;
    }

    /* Price */
    .price {
        font-size: 26px;
        color: #b30000;
        margin: 10px 0;
        font-weight: bold;
    }
   .description-card {
  background: #fff; /* keep clean white */
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.description-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.description-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 6px;
  height: calc(100% - 40px);
  background: #b30000; /* red accent */
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(179, 0, 0, 0.4);
}

.description-card h3 {
  color: #b30000;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border-bottom: 3px solid #b30000;
  padding-bottom: 8px;
  font-size: 1.9rem;
}

.description {
  font-size: 17.5px;
  line-height: 1.75;
  color: #444;
  font-weight: 400;
}

    /* Polished Property Details */
    .details-card {
        background: linear-gradient(145deg, #fff5f5, #ffffff);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(179, 0, 0, 0.12);
        margin-bottom: 20px;
        border: 1px solid rgba(179,0,0,0.08);
    }
    .details-card h2 {
        font-size: 24px;
        font-weight: 700;
        color: #b30000;
        margin-bottom: 25px;
        border-bottom: 3px solid #b30000;
        padding-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
        gap: 20px;
    }
    .detail-item {
        background: linear-gradient(145deg, #ffffff, #fff8f8);
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(179,0,0,0.08);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        border: 1px solid rgba(179,0,0,0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .detail-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(179,0,0,0.15);
        background: linear-gradient(145deg, #fff2f2, #ffffff);
    }
    .detail-item i {
        font-size: 22px;
        color: #b30000;
        flex-shrink: 0;
    }
    /* Cost Card */
    .cost-card {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    .cost-card input {
        width: 80px;
        padding: 5px;
        margin-left: 5px;
    }
    .cost-card button {
        margin-top: 10px;
    }
/* Form container below buttons */
.formContainer {
    display: none;
    background: white;
    padding: 25px 20px;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(179,0,0,0.15);
    border: 1px solid rgba(179,0,0,0.1);
}
.formContainer.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.formTitle {
    color: #b30000;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formClose {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    margin-top: -5px;
}
.formClose:hover {
    color: #b30000;
}

.formContainer form input,
.formContainer form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}
.formContainer form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #b30000, #e60000);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.formContainer form button:hover {
    background: linear-gradient(45deg, #e60000, #b30000);
}

/* Responsive */
@media (max-width: 600px) {
  .formContainer {
      padding: 20px 15px;
  }
}


    /* Responsive */
    @media (max-width: 600px) {
        .header h1 {
            font-size: 22px;
        }
    }
	* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar-header {
  background-color: #000;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative;
  z-index: 1000;
}

.logo-section {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-section h1 {
  font-size: 22px;
  color: #ff4c4c;
  letter-spacing: 1px;
}

.phone-link {
  color: white;
  font-size: 14px;
  margin-top: 5px;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #ff4c4c;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #111;
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  border-radius: 4px;
  z-index: 999;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: white;
}

.dropdown-menu.show {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    padding: 100px 20px;
    background-color: #111;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin-bottom: 20px;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    background: #222;
    padding-left: 10px;
  }
}

/* Letter Animation (Optional) */
.letter {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }
.letter:nth-child(8) { animation-delay: 0.8s; }
.letter:nth-child(9) { animation-delay: 0.9s; }
.letter:nth-child(10) { animation-delay: 1.0s; }
.letter:nth-child(11) { animation-delay: 1.1s; }
.letter:nth-child(12) { animation-delay: 1.2s; }
.letter:nth-child(13) { animation-delay: 1.3s; }

@media screen and (max-width: 600px) {
  .realtor {
    display: block;
    width: 100%;
    margin-top: 8px;
  }
}
/* Extra responsive fixes */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* Keep buttons in one line */
  .buttons {
    display: flex;
    flex-direction: row; /* force one line */
    flex-wrap: wrap; /* allow wrap if really needed */
    gap: 10px; /* spacing between buttons */
    width: 100%;
  }

  .btn {
    flex: 1; /* let them share space evenly */
    min-width: 120px;
    text-align: center;
  }

  .swiper {
    height: 250px; /* shrink gallery height for mobile */
  }

  .details-grid {
    grid-template-columns: 1fr; /* stack property details */
  }

  .nav-menu {
    width: 80vw; /* make mobile menu wider for easier tap */
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 200px;
  }
  
  .price {
    font-size: 22px;
  }

  .description {
    font-size: 14px;
  }

  .details-card h2 {
    font-size: 20px;
  }
}


.cost-calculator {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.cost-calculator:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.cost-calculator h5 {
  position: relative;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d32f2f; /* Bright red */
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-bottom: 10px;
  text-shadow: 0 1px 2px rgba(211, 47, 47, 0.5);
}

.cost-calculator h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d32f2f, #9a1c1c);
  border-radius: 2px;
}



.cost-calculator label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  font-size: 1em;
}

.cost-calculator input,
.cost-calculator select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cost-calculator input:focus,
.cost-calculator select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
  outline: none;
}

/* Two-column layout on large screens */
@media (min-width: 768px) {
  .cost-calculator form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
  }
  .cost-calculator .result {
    grid-column: span 2;
  }
}

.result {
  margin-top: 15px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.result h6 {
  margin-bottom: 5px;
}

.result p {
  font-size: 1.5em;
  color: #007BFF;
  margin: 0;
}

.cost-calculator small {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.cost-calculator button {
  grid-column: span 2;
  padding: 12px 20px;
  background-color: #007BFF;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cost-calculator button:hover {
  background-color: #0056b3;
}

@media (max-width: 767px) {
  .cost-calculator {
    padding: 15px;
  }
}

/* ===== Main Gallery ===== */
.gallery {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  background: #fff; /* white frame */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* keeps frame behind tall/narrow images */
}

.swiper-slide img {
  width: 100%;        /* fill full width */
  height: auto;       /* keep aspect ratio */
  max-height: 95%;    /* add top/bottom frame */
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .swiper {
    height: 350px;
  }
  .swiper-slide img {
    max-height: 97%;   /* slimmer frame */
  }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .swiper {
    height: 250px;
  }
  .swiper-slide img {
    max-height: 99%;   /* almost edge-to-edge */
    border-radius: 5px;
    box-shadow: none;  /* cleaner mobile look */
  }
}
/* ===== Arrows ===== */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(0, 0, 0, 0.5); /* black transparent circle */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

/* Remove Swiper’s default arrow */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

/* Add our custom SVG */
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 22px;
  height: 22px;
  fill: white; /* white arrow */
  pointer-events: none;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Hide arrows on small screens */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}


/* ===== Counter ===== */
.swiper-pagination {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  padding-right: 12px;
  bottom: 10px !important;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  width: 100%;
  height: auto;
  max-height: 95%;
  object-fit: contain;
}
.closeLightbox {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 2100;
}

