/* ============================================================
   Floating buttons — WhatsApp & Call moved to left side
   ============================================================ */

/* Move WhatsApp to left, stacked above call-us */
.whatsapp-btn {
  right: auto !important;
  left: 1rem !important;
  bottom: 5rem !important;
}

/* ============================================================
   Floating Enquire Now button
   ============================================================ */

/* Button is rotated 270deg — so padding-right = visual bottom padding */
.enqu-btn {
  padding: 10px 28px 10px 20px !important;
}

/* ============================================================
   Navbar — white background, dark text always
   ============================================================ */

nav {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 142, 121, 0.15) !important;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

nav.fixed {
  background: rgba(255, 255, 255, 0.97) !important;
}

/* Nav links — dark */
nav .bottom_line ul.navbar-nav .nav-link,
nav .bottom_line ul.navbar-nav li a {
  color: #3a2a22 !important;
}

nav .bottom_line ul.navbar-nav li a:hover,
nav .bottom_line ul.navbar-nav .nav-link:hover {
  color: #b48e79 !important;
}

/* Underline accent */
nav .bottom_line ul.navbar-nav li a:after {
  background: #b48e79 !important;
}

/* Mobile nav dropdown — solid white background, contained */
@media (max-width: 991px) {
  .navbar-collapse.show {
    background: #fff;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(58, 42, 34, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse.show .nav-link {
    color: #3a2a22 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(58, 42, 34, 0.07);
    display: block;
  }

  .navbar-collapse.show .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-collapse.show .nav-link:hover {
    color: #b48e79 !important;
  }

  /* Make nav position relative so dropdown anchors to it */
  nav {
    position: fixed !important;
  }
}

/* Mobile toggler */
.navbar-toggler {
  border: 1px solid rgba(58, 42, 34, 0.3) !important;
  padding: 6px 8px !important;
  background: transparent !important;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   Floor Plan / Layout Plans Section
   ============================================================ */

.fp-section {
  background: #f4ede6;
}

.fp-section .capstext {
  color: #b48e79;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.fp-section .heading {
  color: #b48e79;
  font-family: 'Gotham-Light', Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* Three-column grid — matching suncity monarch */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .fp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fp-master {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .fp-grid {
    grid-template-columns: 1fr;
  }
  .fp-master {
    grid-column: auto;
  }
}

/* Card */
.fp-card {
  background: #fff;
  border: 1px solid rgba(180, 142, 121, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image area */
.fp-img {
  background: #f4ede6;
  overflow: hidden;
  flex-shrink: 0;
}

.fp-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fp-card:hover .fp-img img {
  transform: scale(1.03);
}

/* Details area */
.fp-details {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fp-details h3 {
  font-size: 1.15rem;
  font-family: 'Gotham-Light', Georgia, serif;
  color: #b48e79;
  margin: 0 0 14px 0;
  font-weight: 700;
}

.fp-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.fp-details ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(180, 142, 121, 0.12);
  font-size: 0.85rem;
}

.fp-details ul li:last-child {
  border-bottom: none;
}

.fp-key {
  color: #888;
}

.fp-val {
  color: #3a2a22;
  font-weight: 600;
}

/* Request Plan button */
.fp-btn {
  display: block;
  text-align: center;
  padding: 10px 18px;
  background: transparent;
  color: #b48e79 !important;
  border: 1px solid #b48e79;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.fp-btn:hover {
  background: linear-gradient(45deg, #d8a175, #9a6954);
  color: #fff !important;
  border-color: transparent;
  text-decoration: none !important;
}

/* Master plan card — image fills, overlay button */
.fp-img-cover {
  position: relative;
  height: 100%;
  min-height: 240px;
}

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

.fp-master-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 34, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.fp-master:hover .fp-master-overlay {
  background: rgba(58, 42, 34, 0.65);
}

.fp-btn-overlay {
  background: linear-gradient(45deg, #d8a175, #9a6954);
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  margin-top: 0;
}

.fp-btn-overlay:hover {
  background: #fff;
  color: #9a6954 !important;
}

/* ============================================================
   Price List Section
   ============================================================ */

.price-section {
  background: #3a2a22;
}

.price-section .capstext {
  color: #d8a175;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.price-section .heading {
  color: #f4ede6;
  font-family: 'Gotham-Light', Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* Table wrapper — horizontal scroll on mobile */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}

/* Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.price-table thead tr {
  background: linear-gradient(45deg, #d8a175, #9a6954);
}

.price-table thead th {
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  white-space: nowrap;
  border: none;
}

.price-table tbody tr {
  background: #4a3428;
  border-bottom: 1px solid rgba(216, 161, 117, 0.15);
  transition: background 0.2s;
}

.price-table tbody tr:hover {
  background: #5a3e30;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody td {
  padding: 20px 20px;
  font-size: 0.9rem;
  color: rgba(244, 237, 230, 0.85);
  vertical-align: middle;
  border: none;
  line-height: 1;
}

.price-table tbody td strong {
  color: #f4ede6;
  font-size: 1rem;
}

.price-cell {
  color: #d8a175 !important;
  font-weight: 700;
  white-space: nowrap;
}

/* CTA cell */
.price-table tbody td.price-cta-cell {
  text-align: center;
  vertical-align: middle !important;
  white-space: nowrap;
  width: 170px;
  padding: 0 20px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Price CTA button — pill style */
.price-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px 9px 16px;
  background: transparent;
  color: #d8a175 !important;
  border: 1.5px solid #d8a175;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
}

.price-cta-btn:hover,
.price-cta-btn:focus {
  background: linear-gradient(45deg, #d8a175, #9a6954);
  color: #fff !important;
  border-color: transparent;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(154, 105, 84, 0.35);
}

.price-note {
  font-size: 0.78rem;
  color: rgba(244, 237, 230, 0.45);
  margin-top: 12px;
}

/* ============================================================
   Location Section — standalone, no Bootstrap dependency
   ============================================================ */

/* Section wrapper */
.loc-section {
  background: #3a2a22;
  padding: 60px 0 0;
}

/* Two-column flex layout */
.loc-inner {
  display: flex;
  flex-direction: row-reverse;   /* map on right, content on left */
  min-height: 560px;
}

/* ---- Right: map ------------------------------------------ */
.loc-right {
  flex: 0 0 58%;
  background: #f4ede6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- Left: content --------------------------------------- */
.loc-left {
  flex: 0 0 42%;
  padding: 24px 40px 48px;
  display: flex;
  flex-direction: column;
  background: #3a2a22;
  overflow-y: auto;
}

.loc-heading {
  font-size: 1.9rem;
  font-family: 'Gotham-Light', Georgia, "Times New Roman", serif;
  color: #f4ede6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 28px 0;
  line-height: 1.2;
}

/* ---- Accordion ------------------------------------------- */
.loc-accordion {
  flex: 1;
  margin-bottom: 24px;
}

.loc-acc-item {
  border-bottom: 1px solid rgba(216, 161, 117, 0.2);
}

.loc-acc-item:last-child {
  border-bottom: none;
}

/* Trigger button */
.loc-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
  color: #e8d4c4;
  font-size: 0.95rem;
  font-family: 'Gotham-Light', Georgia, serif;
  font-weight: 600;
  transition: color 0.2s;
}

.loc-acc-btn:hover,
.loc-acc-item.open .loc-acc-btn {
  color: #d8a175;
}

.loc-acc-icon {
  display: flex;
  align-items: center;
  color: #d8a175;
  flex-shrink: 0;
}

.loc-acc-icon svg {
  stroke: #d8a175;
}

/* Chevron rotates when open */
.loc-chevron {
  margin-left: auto;
  font-size: 10px;
  color: #d8a175;
  transition: transform 0.25s ease;
  transform: rotate(180deg);   /* pointing down = closed */
}

.loc-acc-item.open .loc-chevron {
  transform: rotate(0deg);    /* pointing up = open */
}

/* Body — hidden/shown via JS */
.loc-acc-body {
  display: none;
  padding: 0 0 10px 30px;
}

.loc-acc-item.open .loc-acc-body {
  display: block;
}

/* List rows */
.loc-acc-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loc-acc-body ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
}

.loc-acc-body ul li:last-child {
  border-bottom: none;
}

.loc-name {
  color: rgba(244, 237, 230, 0.85);
  flex: 1;
  padding-right: 10px;
}

.loc-time {
  color: #d8a175;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.8rem;
}

/* CTA button */
.loc-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 28px;
  background: linear-gradient(45deg, #d8a175, #9a6954);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

.loc-cta-btn:hover {
  background: linear-gradient(45deg, #e8b890, #b47a60);
  color: #fff;
  text-decoration: none;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 767px) {
  .loc-inner {
    flex-direction: column;
  }

  .loc-right {
    flex: none;
    height: 280px;
  }

  .loc-left {
    flex: none;
    padding: 32px 20px;
  }

  .loc-heading {
    font-size: 1.5rem;
  }
}
