
/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  right: 25px;
  bottom: 85px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

/* Image Styling */
.float-btn img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.float-btn:hover img {
  transform: scale(1.1);
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Individual Button Accent (optional subtle glow) */
.whatsapp {
  border: 2px solid #25D366;
}
.call {
  border: 2px solid #12483F;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 100px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
}
.float-btn {
  animation: bounceIn 0.9s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* ===== Fixed Enquire Button (Desktop - Vertical) ===== */
.fixed-enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 9999;
  transform: translateY(-50%);
}

.fixed-enquire-btn button {
  background-color: #12483F;
  color: #fff;
  border: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  /* Rotate text vertically */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  height: 180px;
  width: 42px;
}

.fixed-enquire-btn button i {
  font-size: 15px;
  transform: rotate(180deg);
  margin-bottom: 5px;
}

.fixed-enquire-btn button:hover {
  background-color: #0f3d36;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* ===== Modal Styling ===== */
.enquiry-modal-content {
  border-radius: 12px;
  overflow: hidden;
  border: none;
  max-width: 600px;
  margin: auto;
}

.enquiry-modal-content .modal-header {
  background-color: #12483F;
  color: #fff;
}

.enquiry-modal-content .btn-close {
  filter: brightness(0) invert(1);
}

.enquiry-title {
  font-size: 26px;
  font-weight: 700;
  color: #12483F;
  margin-bottom: 8px;
}

.enquiry-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.enquiry-modal-content .form-control {
  border-radius: 4px;
  border: 1px solid #12483F;
  box-shadow: none;
  font-size: 14px;
}

.enquiry-modal-content .form-control:focus {
  border-color: #12483F;
  box-shadow: 0 0 5px rgba(18, 72, 63, 0.3);
}

.enquiry-modal-content .btn-primary {
  background-color: #12483F;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.enquiry-modal-content .btn-primary:hover {
  background-color: #0f3d36;
}

/* ===== Mobile Bottom Buttons ===== */
.mobile-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #ccc;
}

.mobile-bottom-buttons a,
.mobile-bottom-buttons button {
  width: 50%;
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.call-now-btn {
  background-color: #25D366;
  text-decoration: none;
}

.enquire-now-btn {
  background-color: #12483F;
}

.mobile-bottom-buttons i {
  font-size: 18px;
}

/* ===== Hide Desktop Button on Mobile ===== */
@media (max-width: 768px) {
  .fixed-enquire-btn {
    display: none !important;
  }
}
.project-highlights,
.property-details {
  padding-bottom:70px;
}

.section-title { 
  color: #12483F;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 32px;
}

.property-info {
  color: #6c6c6c;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 35px;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  margin-bottom: 12px;
  font-size: 17px;
  color: #333;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}

.highlights-list li i {
  color: #12483F;
  margin-right: 10px;
  font-size: 18px;
}

.highlight-image img {
  width: 100%;
  border-radius: 10px;
}

/* Enquiry Box */
.enquiry-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.enquiry-box h3 {
  font-weight: 600;
  color: #12483F;
  margin-bottom: 20px;
}

.btn-dark {
  background-color: #12483F;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #0f3a32;
  color: #fff;
}

/* Highlights Section Background */
.project-highlights {
  background-color: #f6f6f6;
  padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .project-highlights .row,
  .property-details .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .highlight-image img {
    margin-bottom: 30px;
  }

  .enquiry-box {
    margin-top: 30px;
  }
}
/* Floor Plan Section */
.floor-plans {
  background-color: #111111;
  color: #fff;
}

.floor-plan-info {
  color: #FFF;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  padding-bottom: 20px;;
  line-height: 30px;
  opacity: 0.8 !important;
}

.floor-table {
  width: 100%;
  color: #fff;
  border-collapse: collapse;
  border: 1px solid #444;
}

.floor-table th {
  
  text-align: center;
  background-color: #0e3636;
  padding: 12px;
  font-size: 16px;
  letter-spacing: 0.5px;

  color: #fff;
    border: 2px solid #c08831;
    vertical-align: middle;
}

.floor-table td {
  text-align: center;
  padding: 12px;
  font-size: 15px;
  color: #fff;
    border: 2px solid #c08831;
    vertical-align: middle;
}

.floor-table tr:hover {
  background-color: #111;
}

.download-btn {
  background-color: #c79546;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  background-color: #b3833a;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .floor-table th, .floor-table td {
    font-size: 14px;
  }
}

.why-investment {
  background-color: #ffffff;
}

.section-title {
  font-size: 32px;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #12483F;
  word-spacing: 2px;
}

.text-muted {
  font-family:'Plus Jakarta Sans', sans-serif;
  color: #555 !important;
  font-size: 15px;
  line-height: 30px;
}

.info-box {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 22px 20px;
  font-family:'Plus Jakarta Sans', sans-serif;
  background-color: #fff;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.info-box h5 {
  color: #12483F;
  font-family:'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.info-box p {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effect */
.info-box:hover {
  border-color: #12483F;
  background-color: #e6f2ef;
  box-shadow: 0 5px 15px rgba(18, 72, 63, 0.1);
  transform: translateY(-3px);
}

/* Button */
.btn-dark {
  background-color: #12483F;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #0f3a32;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }

  .info-box {
    padding: 18px;
  }

  .btn-dark {
    width: 100%;
  }
}

.faq-section {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #12483F;
}

.enquiry-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.enquiry-box h3 {
  font-weight: 600;
  color: #12483F;
  margin-bottom: 20px;
}

.btn-dark {
  background-color: #12483F;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.btn-dark:hover {
  background-color: #0f3a32;
}

/* FAQ Accordion */
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  background: #fff;
  transition: all 0.3s ease;
}

.accordion-button {
  font-weight: 600;
  color: #12483F;
  background-color: #fff;
  padding: 15px 20px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #e6f2ef;
  color: #0f3a32;
  border-bottom: 1px solid #ccc;
}

.accordion-body {
  background-color: #fff;
  color: #555;
  padding: 15px 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section .row {
    flex-direction: column;
  }

  .enquiry-box {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 26px;
    text-align: center;
  }
}

