/* ================= GLOBAL FONT STYLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

/* Fix for horizontal scrolling */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ================= SECTION BACKGROUND THEMES ================= */
#properties {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #212529;
}

#featured-properties {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  background-color: #ffffff;
  color: #212529;
}

.testimonial-section {
  width: 100%;
  margin: 0;
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
  color: #333;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Contact section styling moved to contact-buttons.css */

/* Navbar background already defined with your theme */

/* ================= IMPROVED NAVBAR STYLES ================= */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

.navbar {
  width: 98vw;
  margin: 0.7rem auto 0 auto;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 60%, rgba(245,245,245,0.85) 100%), linear-gradient(90deg, var(--black) 40%, #232323 100%);
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: box-shadow 0.2s, background 0.3s;
  border-radius: 22px;
  border: 1.5px solid var(--golden);
  padding: 0.2rem 0;
  backdrop-filter: blur(10px) saturate(1.2);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2.2rem 0.6rem 2.2rem;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-shadow: 0 2px 8px rgba(206,170,91,0.13);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
  border-radius: 10px;
  padding: 0.1rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-logo:hover {
  color:var(--gold);
  text-shadow: 0 4px 16px rgba(206,170,91,0.18);
  background: black;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-family: 'Open Sans', sans-serif;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  letter-spacing: 0.5px;
  border: 1.5px solid transparent;
}
.enquire-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c5a25a;
  color: white;
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  white-space: normal;
  max-width: 100%;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(206,170,91,0.18);
  border: 1.5px solid var(--golden);
}
.navbar-menu .enquire-link {
  font-weight: 700;
  margin-left: 0.7rem;
  background: linear-gradient(90deg, var(--golden) 80%, #fffbe6 100%);
  color: var(--black);
  border: 1.5px solid var(--golden);
  box-shadow: 0 2px 12px rgba(206,170,91,0.18);
  border-radius: 12px;
}
.navbar-menu .enquire-link:hover {
  background: var(--black);
  color: var(--golden);
  border-color: var(--black);
}
/* Dropdown */

.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(255,255,255,0.98);
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-radius: 14px;
  z-index: 10;
  flex-direction: column;
  border: 1.5px solid var(--golden);
  overflow: hidden;
}
.dropdown-content a {
  padding: 0.85rem 1.4rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--black);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--white);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--black);
}
.call-btn {
  background: linear-gradient(90deg, var(--golden) 80%, #fffbe6 100%);
  color: var(--black);
  padding: 0.5rem 1.3rem;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px rgba(206,170,91,0.18);
  transition: background 0.15s, color 0.15s, border 0.15s;
  border: 1.5px solid var(--golden);
  outline: none;
  letter-spacing: 0.5px;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
  border-color: var(--black);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ================= NAVBAR STYLES ================= */
.navbar {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: fixed;
  top: 0; left: 0; z-index: 100;
  font-family: inherit;
  transition: box-shadow 0.2s;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.navbar-logo {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--golden);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between image and text */
}
.navbar-logo img {
  vertical-align: middle;
  transform: scale(1.5);
}
.navbar-logo span {
  line-height: 1;
}
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-menu li {
  position: relative;
}
.navbar-menu a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.08rem;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.navbar-menu a:hover, .navbar-menu .enquire-link {
  background: var(--golden);
  color: var(--white);
}
.navbar-menu .enquire-link {
  font-weight: 600;
  margin-left: 0.5rem;
}
/* Dropdown */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 0.3em;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  z-index: 10;
  flex-direction: column;
}
.dropdown-content a {
  padding: 0.7rem 1.2rem;
  color: var(--black);
  border-radius: 0;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.dropdown-content a:hover {
  background: var(--golden);
  color: var(--white);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.search-btn:hover {
  background: var(--golden);
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: none;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') center/contain no-repeat;
  mask-size: cover;
  background-color: var(--black);
  transition: background-color 0.2s;
}
.search-btn:hover .search-icon {
  background-color: var(--white);
}
.call-btn {
  background: var(--golden);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(206,170,91,0.08);
  transition: background 0.15s, color 0.15s;
  border: none;
  outline: none;
}
.call-btn:hover {
  background: var(--black);
  color: var(--golden);
}
/* Hamburger for mobile */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 1.2rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Active states */
.search-btn.active {
    background: var(--gold);
    color: white;
}

.dropdown-content a.active {
    background: var(--gold);
    color: white;
}

/* Mobile navbar toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    width: 20px;
    height: 3px;
    background: var(--text);
    margin: 1px 0;
    transition: 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center !important;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 2rem;
        z-index: 999;
        overflow-y: auto !important; /* THIS IS CRITICAL */
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-menu li {
        margin: 1rem 0;
    }
    
    .navbar-actions {
        display: flex
;
        margin-left: 30px;
    }
    .navbar-menu .area-dropdown {
    width: 100%;
  }
  
  .navbar-menu .area-dropdown-content {
    max-height: none; /* Allow full expansion */
    overflow: visible; /* Don't clip content */
  }
  .enquire-link{
    margin-bottom: 2rem;
  }

}

/* RESET AND BOX-SIZING */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE STYLES */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: #111;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Apply Open Sans font globally */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
}

/* THEME COLORS */
:root {
  --golden: #ceaa5b; /* Primary accent */
  --black: #111111;   /* Dark text */
  --white: #fff;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --gold:#C8A24A; --surface:#f6f7f9; --card:#fff; --text:#101114; --muted:#6b7280;
  --shadow:0 10px 30px rgba(16,17,20,.12); --radius:16px;
}

/* LINKS, BUTTONS */
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline-offset: 2px;
}

/* HERO SECTION */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  transform: translateY(0px) !important;
}

#hero video#heroVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--overlay-dark) 0%, var(--overlay-dark) 100%);
  z-index: 2;
}

.hero-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -31%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 2;
}

.hero-h1 {
  margin: 0;
  max-width: 90vw;
  font-size: 45px;
  margin-bottom: 247px;
}

.hero-search-bar {
  position: static;
  background: rgba(255, 255, 255, 0.9);
  width: 1100px; /* desktop target */
  max-width: 95vw; /* never overflow viewport */
  padding: 20px 24px;
  box-sizing: border-box;
}

/* tablet: two-column wrap */
@media (max-width: 992px) {
  .hero-h1 {
    font-size: 2.6rem;
    margin-bottom: 12rem;
  }

  .hero-layer {
    transform: translate(-50%, -40%);
  }

  .hero-search-bar{
    transform: translate(-50%, -39%) !important ;
  }

  #ctaExplore {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  .hero-search-bar {
    margin-top: 25px;
  }

  /* search card fits viewport, inputs in two neat rows */
  .hero-search-bar {
    width: 90vw;
    padding: 16px;
  }
  .search-bar {
    grid-template-columns: 1fr 1fr; /* 2×2 grid */
    column-gap: 12px;
    row-gap: 12px;
  }
  .search-bar button {
    justify-self: center;
  }
}

/* phone: full-width single column */


.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-text p {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

#ctaExplore {
  background-color: var(--golden);
  border: none;
  padding: 1rem 3rem;
  color: var(--white);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 0 15px var(--golden);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#ctaExplore:hover,
#ctaExplore:focus {
  background-color: #b88a32;
  box-shadow: 0 0 20px #b88a32;
  outline: none;
}

/* PROPERTY GALLERY */
#gallerySection {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem 4rem;
  color: var(--black);
}

#gallerySection h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--golden);
}

.filters {
  margin-bottom: 2rem;
  text-align: center;
}

.filter-btn {
  background: white;
  color: var(--black);
  border: 2px solid var(--golden);
  margin: 0 0.3rem 0.5rem 0.3rem;
  padding: 0.7em 1.5em;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.35s, color 0.35s;
}

.filter-btn:hover,
.filter-btn:focus {
  background-color: var(--golden);
  color: white;
  outline: none;
}

.filter-btn.active {
  background-color: var(--golden);
  color: white;
  border-color: var(--golden);
}

/* Gallery grid - masonry style with smooth animations */
#propertyGallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.property-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 7px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline-offset: 4px;
}

.property-card:hover,
.property-card:focus {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  outline: none;
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-info {
  padding: 1rem 1.2rem;
  color: var(--black);
}

.property-info h3 {
  font-weight: 700;
  color: var(--golden);
  margin-bottom: 0.2rem;
}

.property-info p {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #444;
}

.property-info .price {
  font-weight: 700;
  color: var(--golden);
  font-size: 1.1rem;
}

/* Social media and contact button styles are now in contact-buttons.css */

#contactToggle:focus {
  outline: 3px solid #b58e5e;
}

#contactForm {
  margin-top: 1rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
  padding: 1.2rem 1.5rem;
  width: 280px;
  display: none;
  flex-direction: column;
}

#contactForm label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--black);
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 7px 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--golden);
  outline: none;
}

#contactForm button[type="submit"] {
  background-color: var(--golden);
  border: none;
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 0;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button[type="submit"]:hover,
#contactForm button[type="submit"]:focus {
  background-color: #b58e37;
  outline: none;
}

/* PARALLAX SECTION */
#parallaxSection {
  position: relative;
  height: 400px;
  margin: 4rem 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

#skylineLayer {
  background: url('images/skyline.png') center bottom no-repeat;
  background-size: cover;
  z-index: 1;
  filter: brightness(0.9);
}

#buildingsLayer {
  background: url('images/buildings.png') center bottom no-repeat;
  background-size: cover;
  z-index: 2;
  filter: brightness(0.8);
}

#foregroundTextLayer {
  position: relative;
  z-index: 3;
  top: 40%;
  transform: translateY(-50%);
  padding: 0 1rem;
}

#foregroundTextLayer h2 {
  font-size: 2.8rem;
  color: var(--golden);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

#foregroundTextLayer p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}

/* NEIGHBORHOOD GUIDE */
#neighborhoodGuide {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
  text-align: center;
  color: var(--black);
}

#neighborhoodGuide h2 {
  color: var(--golden);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.amenities {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.amenity {
  width: 140px;
  cursor: pointer;
  outline-offset: 4px;
  position: relative;
}

.amenity img {
  width: 70px;
  filter: grayscale(85%);
  transition: filter 0.3s ease;
}

.amenity:hover img,
.amenity:focus img {
  filter: grayscale(0);
}

.amenity p {
  margin-top: 0.8rem;
  font-weight: 600;
}

/* Tooltip */
.tooltip {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  padding: 1rem;
  background: white;
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.amenity:hover .tooltip,
.amenity:focus .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.tooltip img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.tooltip span {
  font-size: 0.9rem;
  color: #444;
  display: block;
  text-align: left;
}

/* SECTION TRANSITION ANIMATIONS */
section {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Responsive Search Bar Styles */
.search-bar {
  display: grid;
  grid-template-columns: auto minmax(150px, 190px) 1fr auto auto;
  column-gap: 24px;
  align-items: center;
  max-width: 1300px;
  height: 88px;
  margin: 0 auto 0;
  padding: 0 16px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
}

.search-bar select,
.search-bar input {
  height: 48px;
  border: 1px solid #D4B06A;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 400;
}

.search-bar input::placeholder {
  color: #999;
}

.ghost-btn {
  background: transparent;
  border: 2px solid #D4B06A;
  color: #D4B06A;
  font-weight: 600;
  padding: 0 16px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ghost-btn:hover{
  cursor:grab;
  color: white !important;
  background-color: #D4B06A !important;
}

.solid-btn {
  background: #D4B06A;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0 16px;
  height: 48px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-equalizer,
.icon-search {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-equalizer {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23D4B06A" viewBox="0 0 24 24"><path d="M4 10h16v2H4v-2zm0 4h10v2H4v-2zm0-8h7v2H4V6z"/></svg>');
}

.icon-search {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23FFFFFF" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
}

/* Adjusted Hero Search Bar Styles */
.hero-search-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 2;
}

.hero-search-bar h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #333;
}

.hero-search-bar .search-bar {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  column-gap: 16px;
  align-items: center;
}

.hero-search-bar select,
.hero-search-bar input {
  height: 48px;
  border: 1px solid #D4B06A;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 400;
}

.hero-search-bar .solid-btn {
  background: #D4B06A;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0 16px;
  height: 48px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-search-bar .ghost-btn {
  background: transparent;
  border: 2px solid #D4B06A;
  color: #D4B06A;
  font-weight: 600;
  padding: 0 16px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Video Stack Styles */
.video-stack {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.hero-video.hide {
  opacity: 0;
}

.hero-video.show {
  opacity: 1;
}

/* Properties Section Styles */
#properties {
  padding: 100px 30px 110px;
  background: linear-gradient(135deg, #f8f8ff 0%, #f0f4f8 100%);
  margin: 50px 0;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 25px -10px rgba(0,0,0,0.06);
}

/* Decorative elements for properties section */
.properties-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 148, 79, 0.05) 0%, rgba(206, 170, 95, 0.08) 100%);
  opacity: 0.6;
}

.decoration-circle:after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 148, 79, 0.03) 0%, rgba(206, 170, 95, 0.06) 100%);
}

.enhanced-properties-section {
  position: relative;
  z-index: 2;
}

.properties-description h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #111529;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 15px;
}

.properties-description h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #b8944f, #ceaa5f);
  border-radius: 2px;
}

.properties-description p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.7;
  font-size: 1.15rem;
  max-width: 90%;
}

.properties-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.properties-description {
  flex: 2;
  padding-right: 40px;
}

.properties-action {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.properties-action .solid-btn {
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(184, 148, 79, 0.15);
  transition: all 0.3s ease;
}

.properties-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three cards per row */
  gap: 40px; /* Further increased gap */
  max-width: 1400px; /* Container max width */
  margin: 15px auto; /* Added vertical margin */
  position: relative;
  z-index: 2;
  padding: 10px 0;
}

.property-card {
  max-width: 450px; /* Much larger card width */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  padding: 15px;
  margin: 10px 5px;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(184, 148, 79, 0.15);
  margin-top: 5px;
  margin-bottom: 15px;
}

.property-card .property-title {
  color: #111529;
  font-weight: 600;
  transition: color 0.3s ease;
}

.property-card:hover .property-title {
  color: #b8944f;
}

/* Responsive design for enhanced properties section */
@media (max-width: 1200px) {
  .properties-description h2 {
    font-size: 2.1rem;
  }

  .properties-description p {
    font-size: 1.05rem;
  }

  .decoration-circle {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .properties-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .properties-description {
    padding-right: 0;
  }

  .properties-description h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .properties-description p {
    margin: 0 auto;
    max-width: 85%;
  }

  .properties-action {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #properties {
    padding: 60px 20px 70px;
  }

  .properties-description h2 {
    font-size: 1.9rem;
  }

  .properties-description p {
    font-size: 1rem;
    max-width: 95%;
  }

  .decoration-circle {
    display: none; /* Hide decoration on mobile for better performance */
  }
}

@media (max-width: 480px) {
  .properties-description h2 {
    font-size: 1.7rem;
  }

  .properties-action .solid-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(206, 170, 91, 0.2);
}

.property-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #212529;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.property-price {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #cea55b;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.property-details span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
}

.property-location {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 20px;
}

.property-image-container {
  position: relative;
  height: 250px; /* Increased image height */
  margin-bottom: 25px; /* Increased margin */
  border-radius: 8px;
  overflow: hidden;
}

.property-slideshow {
  position: relative;
  height: 100%;
}

.property-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.slideshow-btn.left {
  left: 10px;
}

.slideshow-btn.right {
  right: 10px;
}

.property-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.property-price {
  color: #28a745;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.property-details {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.property-location {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.property-contact {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.contact-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-btn.call {
  background: #007bff;
  color: #fff;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

/* Responsive Adjustments for Property Cards */

@media (max-width: 700px) {
  
}
@media (max-width: 992px) {
  .properties-cards {
    grid-template-columns: repeat(2, 1fr); /* Two cards per row for tablets */
  }
  .search-bar {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
  }

  .search-bar button {
    justify-self: center;
  }
}


@media (max-width: 900px) {
  .navbar-container {
    padding: 0.5rem 1rem;
  }
  .navbar-menu {
    gap: 1.1rem;
  }
  .navbar-container {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 850px) {
  .hero-search-bar {
    padding: 8px;
    transform: translate(-50%, -50%) !important;
  }
  
  

  .hero-search-bar .search-bar {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .hero-search-bar select,
  .hero-search-bar input,
  .hero-search-bar .solid-btn,
  .hero-search-bar .ghost-btn {
    height: 36px;
    font-size: 0.8rem;
  }
  .search-bar{
    height: auto;
    padding: 10px;
  }
  .hero-h1{
    font-size: 1.7rem;
    margin-bottom: 18.3rem;
  }

  .hero-search-bar > h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #gallerySection, #neighborhoodGuide, #mortgageCalculator {
    padding: 0 1rem;
  }

  .amenities {
    gap: 1.5rem;
  }
  .amenity {
    width: 100px;
  }
  .amenity img {
    width: 50px;
  }
  #heroText h1 {
    font-size: 2.2rem;
  }
}


@media (max-width: 768px) {
  .navbar {
    width: 99vw;
    border-radius: 0 0 18px 18px;
    margin: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 60%, rgba(245,245,245,0.92) 100%), linear-gradient(90deg, var(--black) 40%, #232323 100%);
  }
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    display: none;
    z-index: 99;
    border-radius: 0 0 18px 18px;
  }
  .navbar-menu.open {
    display: flex;
    
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-actions {
    gap: 0.5rem;
  }
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 60vw;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: none;
    z-index: 99;
  }
  .navbar-menu.open {
    display: flex;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-actions {
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .properties-cards {
    grid-template-columns: 1fr; /* One card per row for mobile screens */
  }

  .search-bar {
    grid-template-columns: 1fr; /* stack all five controls */
    row-gap: 10px;
  }
  .hero-h1 {
    font-size: 1.6rem;
    margin-bottom: 19.9rem;
  }
  #ctaExplore {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }

  .hero-search-bar {
    width: 95vw;
    padding: 12px;
  }
  .search-bar select,
  .search-bar input,
  .search-bar button {
    width: 100%; /* no overflow */
  }
}

/* ================= PROPERTIES FOR SALE SECTION ================= */
.properties-sale-section {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #212529;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.properties-sale-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #212529;
  text-align: center;
}

.properties-sale-section p {
  max-width: 800px;
  font-size: 1.1rem;
  margin: 0 auto 50px;
  line-height: 1.6;
  text-align: center;
  color: #495057;
  font-weight: 400;
}

.properties-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* ------- Single Property Card ------- */
.property-sale-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 2px solid rgba(206,170,91,0.1);
  font-family: 'Open Sans', sans-serif;
}

.property-sale-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border-color: rgba(206,170,91,0.3);
}

.property-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.property-sale-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-sale-card:hover .property-sale-image {
  transform: scale(1.05);
}

.property-labels {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.property-labels span {
  background: rgba(33, 37, 41, 0.9);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.property-labels .buy-label {
  background: rgba(206, 170, 91, 0.95);
  color: #fff;
}

.property-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-sale-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212529;
  line-height: 1.3;
}

.property-sale-price {
  font-size: 1rem;
  font-weight: 700;
  color: #cea55b;
  margin-bottom: 15px;
}

.property-specs {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c757d;
  border-top: 1px solid #e9ecef;
  padding-top: 12px;
  margin-top: auto;
  margin-bottom: 12px;
}

.property-spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.property-footer {
  border-top: 1px solid #e9ecef;
  padding: 12px 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  font-weight: 500;
  color: #495057;
}

.property-contact-buttons {
  display: flex;
  gap: 8px;
}

.property-contact-buttons button {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #cea55b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(206,170,91,0.3);
}

.property-contact-buttons button:hover {
  background: #b8944a;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(206,170,91,0.4);
}

/* ------- Contact Form ------- */
.contact-form-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 2px solid rgba(206,170,91,0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #212529;
  text-align: center;
}

.contact-form-wrapper p {
  font-size: 0.9rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 25px;
}

.property-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #495057;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #cea55b;
  box-shadow: 0 0 0 3px rgba(206,170,91,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  background: linear-gradient(135deg, #cea55b 0%, #b8944a 100%);
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b8944a 0%, #a3833e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(206,170,91,0.3);
}

/* ------- SVG Icons ------- */
.property-spec-item svg,
.property-contact-buttons svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.property-contact-buttons svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}

/* ------- Responsive Design ------- */
@media (max-width: 1200px) {
  .properties-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .properties-sale-section {
    padding: 60px 15px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .properties-sale-section h2 {
    font-size: 2rem;
  }
  
  .properties-sale-section p {
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .property-specs {
    flex-direction: column;
    gap: 5px;
  }
  
  .properties-sale-section {
    padding: 40px 15px;
    margin: 30px 0px;
  }
}

/* ================= HOUSES SECTION ================= */
/* Houses Section - Matching Properties Section */
#houses {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.houses-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto 60px;
  gap: 40px;
}

.houses-description {
  flex: 1;
}

.houses-description h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #cea55b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.houses-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  font-weight: 300;
}

.houses-action {
  flex-shrink: 0;
  padding-top: 20px;
}

.houses-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.house-card {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(206, 165, 91, 0.1);
}

.house-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(206, 165, 91, 0.2);
  border-color: rgba(206, 165, 91, 0.3);
}

.house-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.house-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.house-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.house-card:hover .house-slideshow img {
  transform: scale(1.1);
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(206, 165, 91, 0.9);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.slideshow-btn:hover {
  background: #cea55b;
  transform: translateY(-50%) scale(1.1);
}

.slideshow-btn.left {
  left: 15px;
}

.slideshow-btn.right {
  right: 15px;
}

.house-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.house-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #cea55b;
  margin: 0 20px 15px;
}

.house-details {
  display: flex;
  justify-content: space-between;
  margin: 0 20px 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.house-details span {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 400;
}

.house-location {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0 20px 20px;
  font-weight: 500;
}

.house-contact {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.contact-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-btn.call {
  background: linear-gradient(135deg, #cea55b, #b8964f);
  color: white;
}

.contact-btn.call:hover {
  background: linear-gradient(135deg, #b8964f, #cea55b);
  transform: translateY(-2px);
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.contact-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
}

.view-all-houses {
  text-align: center;
  margin-top: 60px;
}

.view-all-btn {
  background: linear-gradient(135deg, #cea55b, #b8964f);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #b8964f, #cea55b);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(206, 165, 91, 0.3);
}

/* Responsive Design for Houses */
@media (max-width: 1200px) {
  .houses-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .houses-description h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .houses-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .houses-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .houses-description h2 {
    font-size: 2rem;
  }
  
  .houses-description p {
    font-size: 1.1rem;
  }
  
  .house-image-container {
    height: 200px;
  }
}

/* Plots Section - Light Theme with Golden Accent */
#plots {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f4e6 0%, #f0ead2 100%);
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

.plots-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto 60px;
  gap: 40px;
}

.plots-description {
  flex: 1;
}

.plots-description h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #b8944f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.plots-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

.plots-action {
  flex-shrink: 0;
  padding-top: 20px;
}

.plots-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.plot-card:nth-child(4),
.plot-card:nth-child(5) {
  grid-column: span 1;
}

.plot-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
  /* Ensuring card takes full width of its grid cell */
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.plot-card:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2;
  /* Ensuring card takes full width of its grid cell */
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  /* Removed max-width constraint to make it full width */
}

.plot-card {
  background: linear-gradient(145deg, #fff, #f9f6f0);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 148, 79, 0.2);
}

.plot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(184, 148, 79, 0.2);
  border-color: rgba(184, 148, 79, 0.4);
}

.plot-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plot-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.plot-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.plot-card:hover .plot-slideshow img {
  transform: scale(1.1);
}

.plot-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.plot-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #cea55b;
  margin: 0 20px 15px;
}

.plot-details {
  display: flex;
  justify-content: space-between;
  margin: 0 20px 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plot-details span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

.plot-location {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 20px;
  font-weight: 500;
}

.plot-contact {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.view-all-plots {
  text-align: center;
  margin-top: 60px;
}

.view-all-btn {
  background: linear-gradient(135deg, #cea55b, #b8964f);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #b8964f, #cea55b);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(206, 165, 91, 0.3);
}

/* Responsive Design for Plots */
@media (max-width: 1200px) {
  .plots-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .plot-card:nth-child(4),
  .plot-card:nth-child(5) {
    grid-column: span 1;
    max-width: none;
    width: 100%;
    margin: 0;
  }
  
  .plot-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .plot-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .plots-description h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .dropbtn{
    justify-content: center;
  }
  .plots-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .plots-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .plot-card:nth-child(4),
  .plot-card:nth-child(5) {
    grid-column: span 1;
    max-width: none;
    width: 100%;
    margin: 0;
  }
  
  .plots-description h2 {
    font-size: 2rem;
  }
  
  .plots-description p {
    font-size: 1.1rem;
  }
  
  .plot-image-container {
    height: 200px;
  }
  
}

/* FAQ Section - Dark Theme */
.faq-section {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-section h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #cea55b;
  line-height: 1.2;
}

.faq-section > p {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.2rem;
}

.faq-container {
  max-width: 1400px;
  margin: 30px auto;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.6;
  color: #e0e0e0;
  font-weight: 300;
}

/* FAQ Item */
.faq-item {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border: 2px solid rgba(206, 165, 91, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  border-color: rgba(206, 165, 91, 0.4);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #cea55b;
  box-shadow: 0 15px 40px rgba(206, 165, 91, 0.3);
}

/* FAQ Question */
.faq-question {
  padding: 25px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Add pointer events to ensure entire area is clickable */
.faq-question * {
  pointer-events: none;
}

.faq-icon {
  pointer-events: auto !important; /* Override to make icon separately clickable */
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #cea55b, #b8944f);
  color: #1a1a1a;
  font-weight: 700;
}

/* Number Prefix */
.faq-question span.prefix {
  font-weight: 700;
  margin-right: 15px;
  color: #cea55b;
  font-size: 1.2rem;
}

.faq-item.active .faq-question span.prefix {
  color: #1a1a1a;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
  width: 30px;
  height: 30px;
  background: #cea55b;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-left: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  display: inline-block;
}

.faq-item.active .faq-icon {
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(206,165,91,0.5);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #cea55b;
}

.faq-icon::before {
  width: 16px;
  height: 3px;
  left: 7px;
  top: 50%;
  margin-top: -1.5px;
}

.faq-icon::after {
  height: 16px;
  width: 3px;
  top: 7px;
  left: 50%;
  margin-left: -1.5px;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
  height: 0;
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 25px 30px 30px 60px;
  font-size: 1rem;
  line-height: 1.7;
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  color: #b0b0b0;
  font-weight: 400;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    margin: 0;
    padding: 60px 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .faq-section > p {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 20px 20px 25px 50px;
    font-size: 0.95rem;
  }
  
  .faq-question span.prefix {
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    margin: 30px 0px;
    padding: 30px 20px;
  }
  
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 18px 15px;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 18px 15px 22px 35px;
    font-size: 0.9rem;
  }
}

/* ---------- AREA-WISE LISTINGS ---------- */
.area-listings-section {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #212529;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.area-listings-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #212529;
}

.area-listings-section h2 u {
  cursor: pointer;
  text-decoration: underline;
  color: #cea55b;
}

.area-listings-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
  font-weight: 400;
}

.area-listings-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.area-listing {
  background: #f5f7f9;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #212529;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.area-listing svg {
  width: 22px;
  height: 22px;
  fill: #cea55b;
  transition: fill 0.3s ease;
}

.area-listing:hover {
  background: #cea55b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(206,165,91,0.3);
}

.area-listing:hover svg {
  fill: #fff;
}

/* Responsive Styles for Area Listings */
@media (max-width: 768px) {
  .area-listings-section {
    margin: 0;
    padding: 60px 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .area-listings-section h2 {
    font-size: 2rem;
  }
  
  .area-listings-section p {
    font-size: 1rem;
  }
  
  .area-listings-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 480px) {
  .area-listings-section {
    margin: 30px 0px;
    padding: 30px 20px;
  }
  
  .area-listings-section h2 {
    font-size: 1.8rem;
  }
  
  .area-listings-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  .area-listing {
    padding: 15px 18px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .area-listing svg {
    width: 18px;
    height: 18px;
  }
}


.btn-advanced-search{
  background:var(--gold); color:#fff; border:0; border-radius:999px; padding:10px 14px; cursor:pointer;
}

/* Overlay + Drawer */
.adv-overlay{
  position:fixed; inset:0; background:rgba(16,17,20,.45);
  opacity:0; pointer-events:none; transition:.25s; z-index:95;
}
.adv-overlay.active{ opacity:1; pointer-events:auto; }

.adv-drawer{
  position:fixed; left:50%; transform:translateX(-50%) translateY(-120%);
  top:0; width:min(1200px, 96vw); background:var(--card); border-radius:0 0 var(--radius) var(--radius);
  box-shadow:var(--shadow); z-index:100; transition:transform .28s ease;
  max-height:85vh; overflow:auto;
}
.adv-drawer.active{ transform:translateX(-50%) translateY(0); }

/* Header */
.adv-header{ display:flex; justify-content:space-between; align-items:center; padding:14px 18px; border-bottom:1px solid #edf0f3; }
.adv-header h3{ margin:0; font-size:18px; }
.adv-close{ border:0; background:#f3f4f6; border-radius:10px; padding:6px 10px; cursor:pointer; }

/* Form */
.adv-form{ padding:16px 18px 12px; }
.adv-grid{
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px;
}
.adv-field label{ display:block; font-weight:600; margin:0 0 6px; }
.adv-field input[type="text"], .adv-field select{
  width:100%; padding:10px 12px; border:1px solid #e5e7eb; border-radius:10px; background:#fff;
}
.adv-span-2{ grid-column: span 2; }
.adv-range{ position:relative; display:flex; gap:10px; }
.adv-range input[type="range"]{ width:100%; accent-color:var(--gold); }
.adv-range-labels{ display:flex; justify-content:space-between; color:var(--muted); font-size:12px; margin-top:6px; }

/* Amenities */
.adv-amenities{ border:1px dashed #e5e7eb; border-radius:12px; padding:10px 12px; margin:14px 0 6px; }
.adv-amenities legend{ padding:0 6px; color:#374151; font-weight:600; }
.adv-amenities label{ display:inline-flex; align-items:center; gap:8px; margin:8px 12px 0 0; }

/* Actions */
.adv-actions{ display:flex; justify-content:flex-end; gap:10px; padding:8px 0 4px; }
.btn-outline{ background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:10px 14px; }
.btn-gold{ background:var(--gold); color:#fff; border:0; border-radius:10px; padding:10px 14px; }

.dual-range{ position:relative; height:32px; }
.dual-range input[type="range"]{
  position:absolute; left:0; top: 13.5px; width:100%;
  -webkit-appearance:none; background:transparent; pointer-events:auto; accent-color:var(--gold);
}
.dual-range input[type="range"]::-webkit-slider-runnable-track{ height:4px; background:transparent; }
.dual-range input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none; width:16px; height:16px; background:var(--gold); border-radius:50%; margin-top:-6px; border:2px solid #fff; box-shadow:0 0 0 1px rgba(0,0,0,.06);
}
.dual-track{ position:absolute; left:0; right:0; top:14px; height:4px; background:#e5e7eb; border-radius:999px; }
.dual-fill{ position:absolute; top:0; height:4px; background:var(--gold); border-radius:999px; left:0; right:0; }

/* Responsive */
@media (max-width:1100px){
  .adv-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .adv-span-2{ grid-column: span 2; }
}
@media (max-width:640px){
  .adv-grid{ grid-template-columns: 1fr; }
}


.area-dropdown {
  position: relative;
  z-index: 10001;
}

.area-dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 740px;
  max-width: calc(96vw);
  width: max-content;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px 20px 28px;
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
  border: 1px solid #dbe8f4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.area-dropdown:hover .area-dropdown-content,
.area-dropdown:focus-within .area-dropdown-content {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.area-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 40px;
}

.area-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #11182d;
  font-size: 1.06rem;
  font-weight: 600;
  background: none;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 14px;
  transition: background 0.15s, color 0.13s;
}

.area-dropdown-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--gold);
  transition: fill 0.13s;
}

.area-dropdown-item:hover,
.area-dropdown-item:focus {
  background: #f5faf5;
  color: #0cac57;
  outline: none;
}

.area-dropdown-item:hover svg {
  fill: var(--card);
}

/* Responsive adjustments */
@media (max-width: 950px) {
  .area-dropdown-content {
    min-width: 420px;
    max-width: calc(96vw - 20px); /* ensure padding on both sides */
    padding: 18px 14px 14px 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%); /* keep centered */
  }
  .area-dropdown:hover .area-dropdown-content,
  .area-dropdown:focus-within .area-dropdown-content {
    transform: translateX(-50%) translateY(0);
  }
  .area-dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
  }
}

@media (max-width: 768px) {
  
  .area-dropdown {
    position: static;
    width: 100%;
  }
  .area-dropdown-content {
    position: static;
    min-width: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 12px 8px 8px 8px;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    max-height: none; /* Allow full height */
    overflow: visible; /* Don't clip */
  }
  .area-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .area-dropdown:hover .area-dropdown-content,
  .area-dropdown:focus-within .area-dropdown-content {
    transform: translateX(0%) translateY(0);
  }
}
@media (max-width: 450px) {
  .navbar-actions{
    margin-left: 0px;
  }
}


@media (max-width: 400px) {
  .call-btn{
    display: none;
  }
}



