*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;

  
}

/* ---------- MAIN NAVBAR ---------- */
.navbar {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  height: 60px;
  top: 0;   
  z-index: 1000;
}

.navbar-logo {
  font-size: 20px;
  font-weight: bold;
  color: #064ca1;
}

/* Logo as image */
.navbar-logo img {
  height: 50px;       /* adjust based on your UI */
  width: auto;
  display: block;
}

/* ---------- NAV LINKS ---------- */
.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 0; /* remove extra gap */
  height: 100%;
}

.navbar-nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0 20px;
  position: relative;
  display: flex;             /* make link itself a flexbox */
  align-items: center;
}

/* Vertical separator between items */
.navbar-nav-links a:not(:last-child) {
  /* border-right: 1px solid #000; */
  height: 100%;
}

/* Active link styling (blue rounded rectangle like your UI) */
.navbar-nav-links a:hover{
  position: relative;
  color: #e53353;
  transition: 0.6s ease;
}
/* ---------- TOGGLE BUTTON (MOBILE) ---------- */
.navbar-menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.navbar-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: 0.4s;
  padding: 40px 20px;
  z-index: 2000;
}

.navbar-mobile-menu.active {
  right: 0;
}

.navbar-mobile-menu a {
  display: block;
  padding: 15px 0;
  font-weight: bold;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
}

.navbar-close-btn {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Call Button (Left Side) */
.navbar-call-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffb400;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.navbar-call-btn:hover {
  background: #e53353;
}

.navbar-call-btn svg {
  fill: white;
}

/* On small screens, show only icon (hide text) */
.head-call{
  display: none;
}


@media (max-width: 1285px) {
  .head-call{
    display: block;
  }
  .call-text{
    display: none;
  }
}

@media (max-width:450px){
  .navbar{
    padding: 12px 8px;
  }
}
/* On small screens, show only icon (hide text) */
@media(max-width: 1222px) {
  
  .navbar-call-btn {
    padding: 8px;
    border-radius: 50%;
  }
  .head-call{
    display: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 1160px) {
  .navbar-call-btn {
      display: none;
  }
  .navbar-nav-links {
    display: none;
  }
  .navbar-menu-toggle {
    display: block;
  }
}
@media (max-width: 1160px){
  .navbar-call-btn{
    padding: 4px 8px;
    border-radius: 50px;
  }
}

main{
  width: 100%;
}

/* Banner */
.home-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slider */
.home-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home-slide.active {
  opacity: 1;
}

/* Enquiry Box */
.home-enquiry-box {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 475px;
  height: 370px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px;
  border-radius: 10px;
}
.home-enquiry-box h2 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}
.home-enquiry-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 5px;
}
.home-enquiry-box button {
  width: 100%;
  padding: 12px;
  background: #f39435;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* Arrows */
.home-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.home-arrow.left {
  display: none;
  left: 10%;  /* left side */
}

.home-arrow.right {
  display: none;
  right: 10%; /* right side */
}
.home-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Desktop Side Tabs */
.home-side-tab {
  position: fixed;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
.home-side-tab.offer {
  top: 15%;
  background: #f39435;
  text-decoration: none;
}
.home-side-tab.brochure {
  top: 43%;
  background: #e53353;
  text-decoration: none;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #d18c00; /* golden yellow like screenshot */
  z-index: 2000;
  border-top: 1px solid #ccc;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #d18c00; /* golden yellow like screenshot */
  z-index: 2000;
  border-top: 1px solid #ccc;
}

.mobile-bottom-bar .mobile-btn {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-right: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-bottom-bar .mobile-btn:last-child {
  border-right: none;
}

.mobile-bottom-bar .mobile-btn i {
  font-size: 16px;
}

.mobile-bottom-bar {
  display: none;
}

/* Hide desktop tabs & show bottom bar in mobile */
@media (max-width: 1200px) {
  .home-enquiry-box {
    display: none;
  }
  .home-side-tab {
    display: none;
  }
  .mobile-bottom-bar {
    display: flex;
  }
}


/* about */

.about-section {
  padding: 0 15px;       /* more top-bottom spacing */
  background: #f5f4f4;
  text-align: left;  
  
}
.about-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;       /* more breathing space */
  line-height: 1.8; 
}

.about-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.about-text {
  color: #000;   /* ABOUT in green */
}

.project-text {
  color:#f39435;  /* PROJECT in ink blue */
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}

.about-description {
  max-width: 3000px;
  margin: 1px auto;
  color: #545455;
  font-size: 16px;
  text-align: justify;
}


/* Highlights Grid */
.about-highlights-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: 'Montserrat', sans-serif;
  gap: 20px;
  margin-top: 10px;
  width: 90%;          /* responsive width */
  max-width: 1200px;   /* cap width */
  margin-left: auto;   /* center horizontally */
  margin-right: auto;  /* center horizontally */
  padding: 0 15px;     /* give consistent padding */
}

.about-highlights {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}
.about-highlights {
  margin: 20px;
  font-size: 1.1rem;
}

.about-highlights i {
  font-size: 2.5rem;
  color: #e53353; /* gold color */
  margin-bottom: 5px;
  display: block;
}


/* Responsive Styles */
@media (max-width: 992px) {
  .about-highlights-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-highlights-container {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 22px;
  }

  .about-description, .about-points p {
    font-size: 14px;
  }
}
.masterplan-section {
  width: 100%;
  text-align: center;
  padding: 20px;
}
.black-text { color: #323233; }
.orange-text { color: #f39435; }

/* ---------------- MASTER PLAN ---------------- */
.masterplan-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.masterplan-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}
.masterplan-box {
  position: relative;
  display: inline-block;
  max-width: 900px;
  margin-top: 10px;
}
.masterplan-img {
  width: 100%;
  /* filter: blur(1px); */
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.masterplan-box:hover .masterplan-img {
  transform: scale(1.05);
  filter: brightness(0.7) blur(0px);
}
.masterplan-enquire {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.masterplan-box:hover .masterplan-enquire {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.masterplan-btn {
  background: #f39435;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.masterplan-btn:hover {
  background: #e53353;
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
}

/* PRICE SECTION */
.price-section {
  background: #f4f4f4;
  padding: 20px 20px;
  text-align: center;
}

.price-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  color:#323233;
}

.price-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}

/* TABLE */
.price-table {
  width: 65%;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 6px;
  background: #cbc09c;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  color: #000;
}

.price-table th {
  background: #d18c00;
  font-weight: bold;
  font-size: 16px;
}

.price-table td {
  background: rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* BUTTON */
.price-btn {
  display: inline-block;
  background: #ffb400;
  color: white;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.price-btn:hover {
  background: #f44336;
}

@media (max-width: 541px) {
  .price-table-div {
    overflow-x: auto;
    width: 100%;
  }

  .price-table {
    min-width: 300px; 
  }
}

/* ===== Gallery Header ===== */
.gallery-section{
  padding: 20px 0;
  background: #f5f4f4;
}
.gallery-header {
  text-align: center;
  margin: 4px 0 10px 0;
}

.gallery-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  color: #323233;
}
.gallery-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Tablet & Mobile View (Stacked images) */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== Fullscreen Modal ===== */
/* ===== Fullscreen Modal ===== */
.gal-modal {
  display: none;  /* keep hidden initially */
  position: fixed; 
  z-index: 1000; 
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.gal-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Close (X) Button */
.gal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.gal-close:hover {
  color: #f44336; /* Red on hover */
}
.gallery img {
  width: 100%;
  height: 300px;       /* adjust height as you like */
  object-fit: cover;   /* crops while keeping aspect ratio */
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery {
  padding-inline: 20px;   /* default: small screens (mobile & tab) */
}

@media (min-width: 992px) {
  .gallery {
    padding-inline: 60px;  /* medium/large desktops */
  }
}

@media (min-width: 1400px) {
  .gallery {
    padding-inline: 100px; /* very wide desktops */
  }
}

.gallery {
  padding-inline: max(10px, 5%);
}

/* .gallery {
  max-width: 1200px;
  margin: 0 auto;
} */
/* AMENITIES ------------------------------ */
.amenities-section{
  padding: 20px 0;
}
.amenities-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  color: #323233;
}
.amenities-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.amenity {
  text-align: center;
}

.amenity img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.amenity img:hover {
  transform: scale(1.05);
}

.amenity p {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
}


@media (max-width: 710px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
  .amenities-section{
    width: auto;
}
}

/* Mobile view - 1x1 */
@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}


.amenity img {
  width: 100%;
  height: 200px;       /* adjust height as you like */
  object-fit: cover;   /* crops while keeping aspect ratio */
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
/*---clubhouse---*/
.clubhouse-section{
  padding: 20px;
}

/* ---------------- FLOOR PLAN ---------------- */
.floorplan-section {
  width: 100%;
  text-align: center;

}
.floorplan-block {
  margin-top: 20px;
}
.floorplan-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.floorplan-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}
.floorplan-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
}
.floorplan-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.floorplan-slide {
  position: relative;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floorplan-img {
  width: 100%;
  max-height: 450px;
  filter: blur(1px);
  object-fit: contain;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.floorplan-slide:hover .floorplan-img {
  transform: scale(1.05);
  filter: brightness(0.7) blur(2px);
}
.floorplan-enquire {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.floorplan-slide:hover .floorplan-enquire {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.floorplan-btn {
  background: #f39435;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.floorplan-btn:hover {
  background: #e53353;
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
}

/* Floorplan Arrows */
.floorplan-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;            /* big modern arrow */
  color: #f39435;             /* attractive orange */
  background: transparent;    /* no circle */
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.floorplan-arrow:hover {
  color: #e53353;             /* hover = red shade */
  transform: translateY(-50%) scale(1.1); /* smooth zoom */
}

.floorplan-left { left: 15px; }
.floorplan-right { right: 15px; }

/* Responsive */
@media (max-width: 768px) {
  .floorplan-arrow { font-size: 32px; }
  .floorplan-section{ width:auto;margin:0px 20px;}
  .floorplan-container{padding: 20px 0;}
}

@media (max-width: 480px) {
  .floorplan-arrow { font-size: 26px; }
}

/* --- Section Layout --- */
.location-section {
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #f5f4f4;
}
.location-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between; /* spread evenly */
  gap: 30px;
  padding: 10px 50px;
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box; /* fix overflow */
}
.location-title{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.location-title::after{
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}

/* --- Left Side Map --- */
.location-section-map {
  flex: 0 0 60%;   /* fixed 60% */
  max-width: 60%;
  padding-right: 15px; /* ✅ prevent sidebar overlap */
  box-sizing: border-box;
}
.location-map {
  width: 100%;
   height: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- Right Side Accordion --- */
.location-section-details {
  flex: 0 0 40%;   /* fixed 40% */
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 15px; /* ✅ breathing room from sidebar */
  box-sizing: border-box;
}

.location-detail {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.5s ease;
}
.location-detail summary {
  cursor: pointer;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  background: #f39435;
  color: #333;
  list-style: none;
  outline: none;
}
.location-detail summary::-webkit-details-marker {
  display: none;
}
.location-detail ul {
  list-style: none;
  padding-left: 10px;
  margin: 0;
  text-align: left;
}
.location-detail li {
  position: relative;
  padding-left: 30px;
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}
.location-detail li::before {
  content: "\f3e7";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #f39435;
  font-weight: bold;
  font-size: 18px;
}
.location-detail[open] {
  border-color: #f39435;
  box-shadow: 0 4px 10px rgba(243,148,53,0.3);
}

/* --- Responsive Fix --- */
@media (max-width: 813px) {
  .location-container {
    flex-direction: column;   /* ✅ stack properly */
    align-items: stretch;     /* full width columns */
    padding: 10px ;
  }
  .location-section-map, 
  .location-section-details {
    width: 100%;  
    max-width: 100%;
    padding: 0;               /* ✅ remove side padding on mobile */
  }
  .location-map {
    height: auto;
  }
}
@media (max-width: 576px) {
  .location-title {
    font-size: 22px;
  }
  .location-detail summary {
    font-size: 14px;
    padding: 12px;
  }
  .location-detail li {
    font-size: 13px;
  }
}


/* CONTACT SECTION */
.contact-section {
  background: #fff;
  padding: 20px 20px;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  color: #323233;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53353;
  margin: 10px auto 0;
}

/* Layout for contact section */
.contact-container {
  padding-top: 10px;
  padding-right: 60px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}
.contact-right {
  flex: 1;
  min-width: 280px;
}

/* Responsive iframe wrapper */
.map-container {
  width: 100%;
  height: 600px;   /* fixed height for laptop screens */
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



/* FORM BOX */
.contact-form-box {
  width: 85%;
  max-width: 900px;
  margin: 0 auto 40px;
  border: 2px solid #d4af37;
  padding: 30px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.contact-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-field label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.contact-input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-submit {
  flex-basis: 100%;
  text-align: center;
  margin-top: 15px;
}

.contact-btn {
  background: #ffb400;
  color: white;
  font-weight: bold;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #f44336;
}

/* COMPANY NAME */
.company-section {
  padding: 20px; /* equal padding */
  max-width: 900px;
  margin: 0 auto;
}

.contact-company {
  font-size: 22px;
  font-weight: bold;
  color: #f39435;
  margin-bottom: 20px;
}

.company-address {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.company-address .address-label {
  font-weight: bold;
  display: inline-block;
  min-width: 80px; /* ensures space before the text starts */
}
@media (max-width: 768px) {
  .company-section {
    padding: 15px;
  }

  .company-address {
    font-size: 14px;
  }

  .company-address .address-label {
    display: block;  /* Address word on top in small screens */
    margin-bottom: 5px;
    min-width: auto;
  }
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px; /* more space between items */
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
}

.contact-item svg {
  display: block;
  margin: 0 auto 6px;
}

.contact-item a {
  text-decoration: none;
  display: block;
  margin: 0 auto 6px;
  color: #000;
}

.fa-whatsapp {
  display: block;
  font-size: 24px; /* size */
  color: #25D366;  /* WhatsApp green */
}

/* RESPONSIVE */
@media (max-width: 1458px) {
  .contact-container {
    padding-right: 0;
    flex-direction: column;
  }

  .contact-form {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    width: 100%;
    padding: 40px;
  }

  .contact-field {
    width: 100%;
  }

  .contact-info {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .contact-right {
    width: 100%;
    padding: 10px;
  }
    .map-container {
    height: 300px; /* even shorter for phones */
  }
}

/* Footer Styling */
.footer {
  background-color: #d4af37; /* Green background */
  color: white;
  padding: 20px 10%;
  position: relative;
}

.footer-disclaimer h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}

.footer-disclaimer p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .footer{
    margin-bottom: 40px;
  }
}
@media (max-width: 456px) {
  .footer{
    margin-bottom: 60px;
  }
}

/* pop up  */
/* Overlay background */
.popup-form-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup box */
.popup-form-container {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: popup-fade 0.3s ease-in-out;
}

/* Title */
.popup-form-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Inputs */
.popup-form input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* Submit button */
.popup-form-submit {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: linear-gradient(to right, #ff6600, #ff8000);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-form-submit:hover {
  background: linear-gradient(to right, #ff8000, #ff6600);
}
.popup-form-price {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #e53353;
  text-align: center;
  background: #fff5f5;
  padding: 8px 8px;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}

.popup-form-price span {
  color: #f39435;
  font-weight: 700;
}


/* Close button */
.popup-form-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
}

.popup-form-close:hover {
  color: #000;
}

/* Animation */
@keyframes popup-fade {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Responsive */
@media (max-width: 400px) {
  .popup-form-container {
    width: 95%;
    padding: 15px;
  }

  .popup-form-title {
    font-size: 18px;
  }
}


#home, #aboutus,#floorplan, #gallery, #location, #contact{
  scroll-margin-top: 60px; /* equal to your header height */
}
#amenities{
  scroll-margin-top: 60px;
}


/* THANK YOU PAGE */
.tk_main_container {
  background: linear-gradient(135deg, #f2f4f7, #dfe9f3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.tk-container {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 1s ease;
}

.tk-title {
  font-size: 28px;
  color: #2d3748;
  margin-bottom: 12px;
}

.tk-message {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 30px;
}

.tk-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #3182ce;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.tk-button:hover {
  background-color: #2b6cb0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .tk-title {
    font-size: 22px;
  }

  .tk-message {
    font-size: 14px;
  }

  .tk-button {
    padding: 10px 20px;
    font-size: 15px;
  }
}

.price-mobile{
  display: none;
}

@media (max-width: 700px) {
  .price-active{
    display: none;
  }
  .price-mobile{
    display: block;
  }
}