/* Basic responsive styles for the clone site */
:root{--accent:#0a74da;--muted:#6b7280;--bg:#f7f8fb}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;line-height:1.5;margin:0;color:#111;background:#fff}
body.sticky-header-space {
  padding-top: 80px;
}
.container{max-width:1100px;margin:0 auto;padding:0 1.5rem}
.site-header{background:#fff;position:sticky;top:0;z-index:30;border-bottom:1px solid #eee}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 100;
  animation: stickyFadeIn 0.3s;
}
@keyframes stickyFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.header-inner{display:flex;align-items:center;gap:1rem;padding:0.75rem 0}
.brand img{height:48px}
.main-nav{display:none;margin-left:auto;gap:1rem}
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.15rem;
  border-radius: 6px;
  margin: 0.25rem 0;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(10,116,218,0.12);
  color: var(--accent);
  outline: none;
}
@media (min-width: 800px) {
  .main-nav a {
    color: #111;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background: none;
    margin: 0;
    display: inline-block;
  }
  .main-nav a:hover, .main-nav a:focus {
    background: rgba(10,116,218,0.08);
    color: var(--accent);
  }
}
.cta{background:var(--accent);color:#fff;border:0;padding:0.8rem 1.4rem;border-radius:8px;cursor:pointer;box-shadow:0 2px 8px rgba(10,116,218,0.08);transition:background 0.2s,box-shadow 0.2s,color 0.2s}
.cta.ghost{background:transparent;border:1.5px solid var(--accent);color:var(--accent)}
.cta:hover, .cta:focus {
  background: #095bb5;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,116,218,0.18);
  outline: none;
}
.cta.ghost:hover, .cta.ghost:focus {
  background: var(--accent);
  color: #fff;
}
@media(min-width:800px){.main-nav{display:flex}}
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 60%, #f7e7c1 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(180,140,60,0.10), 0 2px 8px rgba(0,0,0,0.08);
}
.hero-img {
  width: 100vw;
  max-width: 100%;
  height: 70vh;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(180,140,60,0.10);
}
@media (max-width: 900px) {
  .hero {
    min-height: 40vh;
    border-radius: 0 0 18px 18px;
  }
  .hero-img {
    height: 38vh;
    min-height: 180px;
    border-radius: 0 0 18px 18px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(255,255,255,0.05) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: left;
  max-width: 600px;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: heroFadeIn 1s 0.2s forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(-50%); }
}
.hero .btn, .hero .btn.ghost {
  margin-right: 1rem;
}
.section{padding:3rem 0;padding-left:1.5rem;padding-right:1.5rem}
.alt-bg{background:var(--bg)}
.pricing{display:flex;gap:1rem}
.card{background:#fff;padding:1rem;border-radius:8px;box-shadow:0 6px 18px rgba(16,24,40,0.06);flex:1;margin-bottom:1.5rem}
.plans{display:flex;gap:1rem;margin-top:1rem}
.plan-item img{width:100%;height:220px;object-fit:cover;border-radius:6px;margin-bottom:1.5rem}
.download{display:inline-block;margin-top:0.5rem}
.amenities-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem}
.amenity{background:#fff;padding:1rem;border-radius:8px;text-align:center;box-shadow:0 6px 18px rgba(16,24,40,0.04);margin-bottom:1.5rem}
.amenity img{height:48px;display:block;margin:0 auto 0.5rem}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.75rem}
.gallery-grid img{width:100%;height:180px;object-fit:cover;border-radius:6px;transition:transform 0.2s,box-shadow 0.2s;cursor:pointer}
.gallery-grid img:hover, .gallery-grid img:focus {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(10,116,218,0.18);
  outline: 2px solid var(--accent);
}
.small{padding:1.5rem 0}
.site-footer{border-top:1px solid #eee;padding:2.5rem 0 1.5rem;margin-top:2rem}
.site-footer {
  background: #222;
  color: #eee;
  font-size: 1rem;
  text-align: center;
}
.site-footer a {
  color: #ffd700;
  text-decoration: underline;
  margin: 0 0.5em;
}
.site-footer a:hover, .site-footer a:focus {
  color: #fff;
  background: #0a74da;
  border-radius: 4px;
}
.footer-links {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}
.footer-links a {
  color: #ffd700;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.1rem;
  padding: 0.5em 0.8em;
}
.footer-links a:hover {
  color: #fff;
}
/* Modal */
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.4);align-items:center;justify-content:center;padding:1rem;z-index: 9999;}
.modal[aria-hidden="false"]{display:flex;z-index: 9999;}
.modal-content{background:#fff;padding:1.25rem;border-radius:8px;max-width:480px;width:100%;position:relative}
.modal-close{position:absolute;right:0.5rem;top:0.5rem;border:0;background:rgba(10,116,218,0.18);font-size:2.2rem;color:#fff;border-radius:50%;width:44px;height:44px;display:flex;align-items:center;justify-content:center}
.modal-close:hover, .modal-close:focus {
  background: #0a74da;
}
form label{display:block;margin:1rem 0 0.5rem;font-size:1.05rem;color:#222}
input,textarea{width:100%;padding:0.7rem;border:1.5px solid #e6e6ef;border-radius:8px;font-size:1.05rem;margin-bottom:0.5rem;transition:border-color 0.2s,box-shadow 0.2s}
input:focus,textarea:focus{border-color:var(--accent);box-shadow:0 2px 8px rgba(10,116,218,0.08);outline:none}
.btn{background:var(--accent);color:#fff;padding:0.8rem 1.4rem;border-radius:8px;border:0;font-size:1.1rem;box-shadow:0 2px 8px rgba(10,116,218,0.08);transition:background 0.2s,box-shadow 0.2s,color 0.2s}
.btn:hover, .btn:focus {
  background: #095bb5;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,116,218,0.18);
  outline: none;
}
.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn.ghost:hover, .btn.ghost:focus {
  background: var(--accent);
  color: #fff;
}

/* Gallery Lightbox */
.image-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 1.5rem 1rem 2.5rem;
  border-radius: 10px;
  max-width: 600px;
}
.image-modal .modal-close {
  top: 0.5rem;
  right: 0.5rem;
  font-size: 2.2rem;
  background: rgba(10,116,218,0.18);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal .modal-close:hover, .image-modal .modal-close:focus {
  background: #0a74da;
}
.image-modal .modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}
.image-modal .modal-nav button {
  pointer-events: auto;
  background: rgba(10,116,218,0.7);
  color: #fff;
  border: none;
  font-size: 2.4rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(10,116,218,0.18);
}
.image-modal .modal-nav button:hover, .image-modal .modal-nav button:focus {
  background: #0a74da;
  box-shadow: 0 4px 16px rgba(10,116,218,0.28);
}
.image-modal .modal-caption {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  color: #ffd700;
  text-align: center;
}
@media (max-width: 700px) {
  .image-modal .modal-content {
    max-width: 98vw;
    padding: 1rem 0.5rem 2rem;
  }
  .image-modal .modal-nav button {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

/* Mobile nav styles */
.site-header {
  position: relative;
  z-index: 100;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 1rem;
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30,30,40,0.98); /* Darker overlay for focus */
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5rem;
    height: 100vh;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    opacity: 0;
  }
  .main-nav.open {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
  }
  .main-nav a {
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
  }
  .nav-toggle {
    display: block;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
  }
  .nav-toggle:active, .nav-toggle:focus {
    background: #eee;
    outline: 2px solid var(--accent);
  }
  .header-inner {
    flex-wrap: wrap;
  }
}
/* Overlay for mobile nav */
#navOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,30,0.55); /* More visible overlay */
  z-index: 99;
  transition: opacity 0.3s;
}
#navOverlay.active {
  display: block;
  opacity: 1;
}

/* Floating WhatsApp and Call Buttons */
.floating-whatsapp, .floating-call {
  position: fixed;
  right: 24px;
  z-index: 120;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 8px;
  transition: box-shadow 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eaf4ff;
}
.floating-whatsapp {
  bottom: 90px;
}
.floating-call {
  bottom: 30px;
}
.floating-whatsapp img, .floating-call img {
  width: 36px;
  height: 36px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(10,116,218,0.10));
}
.floating-whatsapp:hover, .floating-whatsapp:focus {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}
.floating-call:hover, .floating-call:focus {
  background: #2563eb;
  box-shadow: 0 4px 16px rgba(37,99,235,0.18);
}
@media (max-width: 600px) {
  .floating-whatsapp, .floating-call {
    right: 12px;
    padding: 4px;
  }
  .floating-whatsapp {
    bottom: 70px;
  }
  .floating-call {
    bottom: 20px;
  }
  .floating-whatsapp img, .floating-call img {
    width: 28px;
    height: 28px;
  }
}

/* Fade-in/Slide-in animation styles */
.section, .banner, .gallery-grid img, .plan-item, .amenity {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.section.visible, .banner.visible, .gallery-grid img.visible, .plan-item.visible, .amenity.visible {
  opacity: 1;
  transform: none;
}

/* Header CTA and Contact Number */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.contact-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a74da;
  background: #eaf4ff;
  padding: 0.4em 1em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10,116,218,0.08);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-right: 0.5em;
}
.contact-number:hover, .contact-number:focus {
  background: #0a74da;
  color: #fff;
  outline: none;
}
@media (max-width: 600px) {
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }
  .contact-number {
    font-size: 1.1rem;
    padding: 0.5em 0.8em;
    margin: 0 0 0.5em 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  #enquireBtn.cta {
    width: 100%;
    margin: 0 0 0.5em 0;
    font-size: 1.1rem;
    box-sizing: border-box;
    display: block;
  }
}
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  .contact-number {
    font-size: 1.1rem;
    padding: 0.5em 0.8em;
    margin: 0 0 0.5em 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  #enquireBtn.cta {
    width: 100%;
    margin: 0 0 0.5em 0;
    font-size: 1.1rem;
    box-sizing: border-box;
    display: block;
  }
}

/* Enquiry Form */
#enquireModal .modal-content {
  padding: 1.2rem 1rem 1.2rem;
  max-width: 400px;
  min-height: unset;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(10,116,218,0.13), 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}
#enquireModal .modal-content h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #0a74da;
}
#enquireForm {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}
#enquireForm label {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
#enquireForm input {
  font-size: 1.08rem;
  padding: 0.7rem 0.9rem 0.7rem 2.2rem;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  margin-bottom: 0.05rem;
  background: #fff;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  margin-left: 0;
}
#enquireForm input[name="name"]::placeholder {
  color: #888;
  font-size: 1.08rem;
  font-style: italic;
}
#enquireForm input[name="name"] {
  background-image: url('../assets/user.svg');
  background-repeat: no-repeat;
  background-position: 0.7rem center;
  background-size: 1.2em 1.2em;
  padding-left: 2.2em;
}
#enquireForm input[name="phone"]::placeholder {
  color: #888;
  font-size: 1.08rem;
  font-style: italic;
}
#enquireForm input:focus, #enquireForm textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(10,116,218,0.08);
  outline: 2px solid var(--accent);
  background: #fff;
  color: #111;
}
#enquireForm input:disabled, #enquireForm textarea:disabled {
  background: #eee;
  color: #aaa;
  border-color: #ddd;
}
#enquireForm .error-message {
  color: #d32f2f;
  font-size: 0.97em;
  margin-top: 0.1em;
  margin-bottom: 0.2em;
  font-weight: 500;
  display: none;
}
#enquireForm input.invalid, #enquireForm textarea.invalid {
  border-color: #d32f2f;
  background: #fff0f0;
  color: #b71c1c;
}
#enquireForm textarea {
  min-height: 48px;
  resize: vertical;
}
#enquireForm .btn {
  margin-top: 0.2rem;
  align-self: center;
  min-width: 120px;
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
}
.privacy-note {
  font-size: 0.95em;
  color: #6b7280;
  margin: 0.3em 0 0.8em;
  text-align: left;
}
@media (max-width: 600px) {
  #enquireModal .modal-content {
    padding: 0.7rem 0.3rem 1rem;
    max-width: 98vw;
    border-radius: 10px;
  }
  #enquireModal .modal-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
  }
  #enquireForm .btn {
    min-width: 100px;
    width: 100%;
    align-self: center;
    font-size: 1.05rem;
    padding: 0.7rem 0;
  }
  #enquireForm label {
    font-size: 1rem;
    gap: 0.3em;
  }
  #enquireForm input {
    font-size: 1rem;
    padding: 0.6rem 0.7rem 0.6rem 1rem;
    margin-bottom: 0.6rem;
  }
}
.form-logo {
  display: block;
  margin: 0 auto 1.2rem auto;
  width: 288px;
  height: auto;
}
.form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #222;
}
@media (max-width: 600px) {
  .form-logo {
    width: 216px;
    margin-bottom: 0.8rem;
  }
  .form-title {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
}

/* Modal Base Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 32px rgba(10,116,218,0.13), 0 2px 8px rgba(0,0,0,0.08);
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.modal-close:hover, .modal-close:focus {
  color: #000;
  outline: none;
}
@media (max-width: 600px) {
  .modal-content {
    padding: 1rem;
    max-width: 95vw;
  }
}

/* Message Modal Styles */
#messageText {
  text-align: center;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
#messageOk {
  align-self: center;
  min-width: 120px;
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
}
@media (max-width: 600px) {
  #messageText {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  #messageOk {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.7rem 0;
  }
}

/* Booking Banner & Overview Enhancements */
.booking-banner {
  background: linear-gradient(135deg, #fff 70%, #e7d3b1 100%);
  box-shadow: 0 8px 32px rgba(180,140,60,0.10), 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 2.2rem 1.5rem 2.5rem;
  max-width: 480px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  animation: fadeInUp 1s;
}
.booking-banner .logo {
  width: 68px;
  height: auto;
  margin-bottom: 0.7rem;
}
.booking-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #b89c5a;
  margin-bottom: 0.2rem;
  text-align: center;
}
.booking-banner .project-name {
  font-size: 1.45rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.2rem;
  text-align: center;
}
.booking-banner .location {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7rem;
  text-align: center;
}
.booking-banner .price {
  background: #b89c5a;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 0.7em 1.5em;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(180,140,60,0.10);
  letter-spacing: 0.02em;
}
.booking-banner .stats {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.7rem;
}
.booking-banner .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.08rem;
  color: #b89c5a;
  font-weight: 600;
  gap: 0.3em;
}
.booking-banner .stat-icon {
  width: 1.5em;
  height: 1.5em;
  margin-bottom: 0.2em;
  opacity: 0.85;
}
.booking-banner .value-statement {
  background: #b89c5a;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.7em 1em;
  text-align: center;
  margin-bottom: 0.7rem;
}
.booking-banner .cta-btn {
  background: #b89c5a;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 0.8em 2.2em;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(180,140,60,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.booking-banner .cta-btn:hover, .booking-banner .cta-btn:focus {
  background: #a07e3a;
  transform: scale(1.04);
  outline: none;
}
.booking-banner .rera {
  font-size: 1.02rem;
  color: #222;
  font-weight: 600;
  margin-top: 0.5rem;
  text-align: center;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
/* Overview Section Enhancements */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b89c5a;
  margin-bottom: 0.5rem;
  text-align: left;
  letter-spacing: 0.01em;
}
.overview-content {
  font-size: 1.13rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.download-brochure-btn {
  display: inline-block;
  background: #fff;
  color: #b89c5a;
  border: 2px solid #b89c5a;
  font-size: 1.13rem;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.7em 2em;
  margin-top: 1.2rem;
  box-shadow: 0 2px 8px rgba(180,140,60,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.download-brochure-btn:hover, .download-brochure-btn:focus {
  background: #b89c5a;
  color: #fff;
  transform: scale(1.04);
  outline: none;
}
@media (max-width: 900px) {
  .booking-banner {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem;
    border-radius: 12px;
  }
  .booking-banner .cta-btn, .download-brochure-btn {
    width: 100%;
    font-size: 1.08rem;
    padding: 0.8em 0;
  }
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .overview-content {
    font-size: 1rem;
  }
}

.disclaimer-text {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2.2rem;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .disclaimer-text {
    font-size: 0.78rem;
    margin-top: 1.2rem;
  }
}

/* Highlight Booking Banner */
.highlight-banner {
  background: linear-gradient(90deg, #fff 60%, #f7e7c1 100%);
  box-shadow: 0 8px 32px rgba(180,140,60,0.13), 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 22px;
  padding: 2.5rem 1.5rem 2.5rem;
  max-width: 540px;
  margin: 2.5rem auto 2.2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  animation: fadeInUp 1s;
}
.highlight-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #b89c5a;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(180,140,60,0.10);
}
.highlight-sub {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7rem;
  text-align: center;
}
.highlight-price {
  color: #b89c5a;
  font-size: 1.45rem;
  font-weight: 800;
  background: #fffbe6;
  border-radius: 10px;
  padding: 0.2em 0.7em;
  margin-left: 0.3em;
  box-shadow: 0 2px 8px rgba(180,140,60,0.10);
}
.highlight-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.1rem;
}
.highlight-btn {
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 1.2em 0;
  width: 220px;
  min-height: 110px;
  box-shadow: 0 2px 8px rgba(180,140,60,0.10);
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.highlight-btn.ghost {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.highlight-btn:not(.ghost) {
  background: #2563eb;
  color: #fff;
  border: none;
}
.highlight-btn:hover, .highlight-btn:focus {
  background: #1746a2;
  color: #fff;
  transform: scale(1.04);
  outline: none;
}
@media (max-width: 900px) {
  .highlight-actions {
    flex-direction: column;
    gap: 0.7rem;
  }
  .highlight-btn {
    width: 100%;
    min-height: 80px;
    font-size: 1.08rem;
    padding: 1em 0;
  }
}
@media (max-width: 900px) {
  .highlight-banner {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem;
    border-radius: 14px;
  }
  .highlight-title {
    font-size: 1.4rem;
  }
  .highlight-sub {
    font-size: 1.08rem;
  }
  .highlight-price {
    font-size: 1.15rem;
    padding: 0.15em 0.5em;
  }
  .highlight-btn {
    width: 100%;
    font-size: 1.08rem;
    padding: 0.8em 0;
  }
  .highlight-actions {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 500px) {
  .container { padding: 0 0.5rem; }
  .section-title { font-size: 1.1rem; }
  .btn, .cta, .highlight-btn { font-size: 1rem; min-height: 48px; }
  .gallery-grid, .plans, .amenities-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero-content { left: 0; right: 0; max-width: 98vw; text-align: center; }
}
.modal-content { max-height: 98vh; overflow-y: auto; }
.btn:focus, .cta:focus, .nav-toggle:focus, .main-nav a:focus { outline: 2px solid var(--accent); }

/* Consolidated mobile header rules */
@media (max-width: 600px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0;
  }
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; }

  .header-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }
  .contact-number {
    font-size: 1.1rem;
    padding: 0.5em 0.8em;
    margin: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  #enquireBtn.cta, #enquireBtn2.cta, .hero .btn.ghost {
    width: 100%;
    margin: 0;
    font-size: 1.05rem;
    box-sizing: border-box;
    display: block;
  }

  /* Enquiry modal adjustments for small screens */
  #enquireModal .modal-content {
    padding: 0.7rem 0.5rem 1rem;
    max-width: 98vw;
    border-radius: 10px;
  }
}

/* Very small screen fixes to avoid floating buttons overlapping CTAs */
@media (max-width: 360px) {
  .floating-whatsapp, .floating-call {
    right: 8px;
    padding: 3px;
    bottom: auto;
    transform: translateY(0);
  }
  .floating-whatsapp { bottom: 82px; }
  .floating-call { bottom: 18px; }
  .floating-whatsapp img, .floating-call img { width: 24px; height: 24px; }
  /* Reduce highlight actions min-height to avoid overlap */
  .highlight-btn { min-height: 64px; padding: 0.6em 0; }
}

/* Keep clear focus outlines for accessibility */
.btn:focus, .cta:focus, .nav-toggle:focus, .main-nav a:focus {
  outline: 3px solid rgba(10,116,218,0.18);
  outline-offset: 2px;
}

/* Final consolidated mobile overrides (ensures single source of truth for mobile header/CTA and floating buttons) */
@media (max-width: 600px) {
  .header-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.5rem 0 !important;
  }
  .header-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
  }
  .contact-number {
    font-size: 1.1rem !important;
    padding: 0.5em 0.8em !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  #enquireBtn.cta, #enquireBtn2.cta, .hero .btn.ghost {
    width: 100% !important;
    margin: 0 !important;
    font-size: 1.05rem !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  /* Make enquiry modal comfortably responsive */
  #enquireModal .modal-content {
    padding: 0.7rem 0.5rem 1rem !important;
    max-width: 98vw !important;
    border-radius: 10px !important;
  }
}

/* Very small screens: reduce floating buttons and hide call button to avoid overlap */
@media (max-width: 360px) {
  .floating-call { display: none !important; }
  .floating-whatsapp {
    right: 8px !important;
    padding: 3px !important;
    bottom: 82px !important;
  }
  .floating-whatsapp img, .floating-call img { width: 24px !important; height: 24px !important; }
  .highlight-btn { min-height: 64px !important; padding: 0.6em 0 !important; }
}

/* Final consolidated mobile overrides to ensure header, CTA and modals stack and align correctly on small screens */
@media (max-width: 600px) {
  /* Stack header elements vertically and ensure CTAs are full width */
  header .top-bar, header .brand, header #main-nav, header .header-cta {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  header .header-cta {
    margin-top: 8px !important;
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
  }

  .header-cta .contact-number, .header-cta .cta {
    flex: 1 1 auto !important;
    min-width: 0 !important; /* allow text to wrap */
  }

  .header-cta .contact-number {
    text-align: left !important;
    padding: 10px 12px !important;
    background: transparent !important;
    font-weight: 600 !important;
  }

  .header-cta .cta {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 14px !important;
    min-height: 44px !important; /* accessible touch target */
  }

  /* Ensure enquiries and contact CTA do not overlap hero or nav */
  .cta.enquire, .cta.contact {
    width: 100% !important;
  }

  /* Modal content should be scrollable on small viewports */
  .modal .modal-content {
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
  }

  /* Improve focus styles for keyboard users */
  a:focus, button:focus, input:focus, textarea:focus {
    outline: 3px solid rgba(21,156,228,0.7) !important;
    outline-offset: 2px !important;
  }
}

/* Very small devices: hide floating call on ultra-narrow screens to avoid overlaps */
@media (max-width: 360px) {
  .floating-call { display: none !important; }

  .floating-whatsapp {
    transform: translateY(-6px) !important;
    right: 10px !important;
    bottom: 66px !important;
    width: 44px !important;
    height: 44px !important;
  }

  /* Reduce min-height of highlighted CTAs to avoid overlap with header */
  .cta.highlight { min-height: 40px !important; }
}

/* End of consolidated mobile overrides */

#messageModal .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
