* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* ===== NAVBAR SECTION ===== */
.navbar {
  display: flex;
  height: 7rem;
  padding: 2.5rem 4.375rem 2.5625rem 4.6875rem;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #000;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.nav-logo-wrapper {
  flex-shrink: 0;
}

.nav-logo {
  width: 8.08944rem;
  height: 2.875rem;
  flex-shrink: 0;
  aspect-ratio: 129.43/46;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}

.nav-link-items {
  color: #fff;
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.nav-link-items:hover {
  color: #ccc;
  transform: translateY(-2px);
}

.nav-link-items::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-items:hover::after {
  width: 100%;
}

.nav-link-contact {
  width: 10.5rem;
  height: 3.4375rem;
  flex-shrink: 0;
  border-radius: 2.34375rem;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-link-contact:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link-contact:hover .nav-link-items-contact {
  color: #000;
}

.nav-link-items-contact {
  color: #fff;
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hide mobile elements on desktop */
.mobile-contact {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

/* ===== TABLET RESPONSIVE ===== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .navbar {
    height: 8rem;
    padding: 3rem 2rem;
  }

  .nav-logo {
    width: 7rem;
    height: 2.5rem;
  }

  .nav-links {
    gap: 2.5rem;
  }

  .nav-link-items {
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
  }

  .nav-link-contact {
    width: 9rem;
    height: 3rem;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .navbar {
    height: 6rem;
    padding: 1.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-logo {
    width: 6rem;
    height: 2rem;
  }

  /* Show hamburger menu */
  .hamburger {
    display: flex;
  }

  /* Hide desktop contact button */
  .desktop-contact {
    display: none;
  }

  /* Mobile menu styles */
  .nav-links {
    display: flex;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 6rem);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 1rem 2rem 1rem;
    gap: 2rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link-items {
    font-size: 1.2rem;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.15rem;
  }

  .nav-link-items:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
  }

  .nav-link-items::after {
    display: none;
  }

  /* Show mobile contact button */
  .mobile-contact {
    display: flex;
    margin-top: 2rem;
    width: 80%;
    max-width: 300px;
    height: 3.5rem;
    border: 2px solid #fff;
    border-radius: 25px;
    background: transparent;
    transition: all 0.3s ease;
  }

  .mobile-contact:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  }

  .mobile-contact:hover .nav-link-items-contact {
    color: #000;
  }

  .mobile-contact .nav-link-items-contact {
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
    font-weight: 600;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===== SMALL MOBILE ===== */
@media screen and (max-width: 480px) {
  .navbar {
    height: 5rem;
    padding: 1rem 0.8rem;
  }

  .nav-logo {
    width: 5rem;
    height: 1.8rem;
  }

  .nav-links {
    top: 5rem;
    height: calc(100vh - 5rem);
    padding: 2rem 1rem;
  }

  .nav-link-items {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    margin: 2.5px 0;
  }
}

/* ===== SMOOTH SCROLLING OFFSET FOR FIXED NAVBAR ===== */
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 6rem;
  }

  /* Add top margin to first section to account for fixed navbar */
  .hero-section {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 480px) {
  html {
    scroll-padding-top: 5rem;
  }

  .hero-section {
    margin-top: 5rem;
  }
}

/* Hero Section */

.hero-section {
  width: 100%;
  height: 100vh;
  background-image: url(./Images/hero_background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 5.44rem;
}
.hero-section-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 4.31rem;
}
.hero-section-logo {
  width: 19.625rem;
  height: 7rem;
  flex-shrink: 0;
  aspect-ratio: 157/56;
}
.hero-section-subtitle {
  color: #fff;
  font-family: Inter;
  font-size: 2.66438rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0.0625rem;
  width: 26.6875rem;
}
.hero-section-form-wrapper {
  display: flex;
  padding: 1.5625rem 1.5625rem 2.47438rem 1.5625rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5625rem;
  background: var(--color-black-60, rgba(0, 0, 0, 0.6));
}
.form-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.form-title {
  color: #fff;
  font-family: Inter;
  font-size: 1.18163rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
}
.form-subtitle {
  color: #fff;
  font-family: Inter;
  font-size: 0.70313rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
}
.form-label {
  color: #fff;
  font-family: Inter;
  font-size: 0.8135rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3125rem;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-input {
  border-radius: 0.21875rem;
  border: var(--stroke-weight-1, 1px) solid var(--color-azure-83, #ced4da);
  background: #fff;
  color: var(--totalenvironment-in-pale-sky, var(--color-grey-46, #6c757d));
  font-family: var(--font-family-Font-1, Inter);
  font-size: 0.82713rem;
  font-style: normal;
  font-weight: var(--font-weight-300, 300);
  line-height: normal;
  padding: 0.5rem;
}
.form-field-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.53rem;
  width: 100%;
}
.email-input {
  width: 100%;
}

/* About Section */

.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6.5rem auto;
}
.about-section-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.24rem;
}
.about-section-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
}
.about-section-title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 1.91875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.875rem;
  text-transform: uppercase;
}
.about-hr {
  border-top: var(--stroke-weight-2, 2px) solid #000;
  width: 7.8rem;
  height: 0.125rem;
}
.about-section-content-wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 4rem;
}
.about-section-image-wrapper {
  width: 36rem;
  height: 40rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
}
.about-section-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 39.1875rem;
}
.about-section-content-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.about-section-content-title {
  color: #000;
  font-family: Inter;
  font-size: 1.91875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.875rem;
  text-transform: uppercase;
}
.about-section-content-subtitle {
  color: #000;
  font-family: Inter;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-26_4, 1.65rem);
}
.about-section-content-icons-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3rem;
}
.about-section-content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-icons {
  width: 2.5rem;
  height: 2.5rem;
}
.about-icons-para {
  color: #000;
  font-family: Inter;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8rem;
}

/* Usp Section */

.usp-section {
  width: 100%;
  padding: 7rem auto;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.palm-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.73494rem;
  height: 33.78969rem;
  flex-shrink: 0;
}
.usp-section-wrapper {
  max-width: 98%;
  display: flex;
  flex-direction: column;
  gap: 3.69rem;
  margin: 7.5rem auto;
}
.usp-section-title-wrapper {
  width: 100%;
  text-align: center;
}
.usp-section-title {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1.91406rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-48, 3rem); /* 156.735% */
  letter-spacing: var(--letter-spacing-1, 0.0625rem);
}
.usp-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.88rem;
}
.usp-card {
  display: flex;
  padding: 1.875rem 1.5625rem;
  align-items: flex-start;
  gap: 0.5625rem;
  border-radius: 0.5625rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10.5px);
}
.usp-card-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
  text-align: left;
  width: 17rem;
}
.usp-card-title {
  color: var(--white, #fff);
  text-align: left;
  font-family: Inter;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.usp-card-subtitle {
  color: #a0a0a0;
  font-family: Inter;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.usp-card-image-wrapper {
  display: flex;
  height: 100%;
  /* margin-top: 0; */
  justify-content: flex-start;
  align-items: flex-start;
}
.usp-card-image {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.3125rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

/* Amenities Section */

.amenities-section {
  width: 100%;
  background-image: url(./Images/leaves-background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 7rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.amenities-section-wrapper {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}
.amenities-section-title-wrapper {
  width: 100%;
  text-align: center;
}
.amenities-section-title {
  color: var(--www-assetzproperty-com-shark, var(--color-azure-15, #212529));
  text-align: center;
  font-family: Inter;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: var(--font-size-42, 2.625rem); /* 140% */
  text-transform: uppercase;
}
.amenities-section-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.amenities-card-row1,
.amenities-card-row2,
.amenities-card-row3 {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.amenities-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  width: 12rem;
}
.amenities-card-icon {
  width: 4.6875rem;
  height: 4.6375rem;
  max-width: var(--width-75, 4.6875rem);
}
.amenities-card-title {
  color: var(--www-assetzproperty-com-shark, var(--color-azure-15, #212529));
  text-align: center;
  font-family: var(--font-family-Font-1, Montserrat);
  font-size: var(--font-size-15, 0.9375rem);
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: var(--line-height-19_5, 1.21875rem); /* 130% */
  letter-spacing: var(--letter-spacing-0_6, 0.0375rem);
}

/* Specification Section */

.specification-section {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem auto;
  position: relative;
}
.specification-palm-leaves {
  position: absolute;
  top: 0;
  right: 0;
  width: 27rem;
  height: 27rem;
  flex-shrink: 0;
  z-index: 1;
}
.specification-section-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.7rem;
  max-width: 90%;
  margin-top: 7rem;
  margin-bottom: 7rem;
  z-index: 9;
}
.specification-section-title-wrapper {
  width: 100%;
  text-align: center;
}
.specification-section-title {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1.91406rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-48, 3rem); /* 156.735% */
  letter-spacing: var(--letter-spacing-1, 0.0625rem);
}
.specification-section-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  gap: 3.76rem;
}
.specification-card {
  display: flex;
  flex-direction: column;
  width: 15rem;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.specification-card-icon {
  width: 3.99756rem;
  height: 3.44975rem;
  flex-shrink: 0;
  color: white;
}
.specification-card-title {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25rem; /* 128.571% */
  letter-spacing: 0.0625rem;
}

/* Location Section  */

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  /* background: white; */
  background-image: url(./Images/leaves-background.png);
  width: 100%;
  object-fit: contain;

}

.section-header {
  text-align: center;
  padding: 40px 20px 40px;
  background: white;
  color: #333;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 15px auto 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.map-section {
  background: white;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.map-container {
  width: 100%;
  max-width: 500px;
  height: 400px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-section {
  padding: 40px;
  background: white;
}

.collapse-item {
  margin-bottom: 0;
  background: white;
}


.collapse-header {
  background: #333;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  transition: none;
}

.collapse-header::before {
  display: none;
}

.collapse-header:hover::before {
  display: none;
}

.collapse-header:hover {
  background: #444;
}

.collapse-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.collapse-item.active .collapse-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.3);
}

.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
}

.collapse-item.active .collapse-content {
  max-height: 500px;
}

.collapse-body {
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.collapse-item.active .collapse-body {
  transform: translateY(0);
  opacity: 1;
}

.location-list {
  list-style: none;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

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

.location-item:hover {
  background: rgba(102, 126, 234, 0.05);
  padding-left: 10px;
  border-radius: 6px;
}

.location-name {
  font-weight: 500;
  color: #2c3e50;
  font-size: 1rem;
}

.location-distance {
  color: #667eea;
  font-weight: 600;
  background: rgba(102, 126, 234, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* .pulse-animation {
  animation: pulse 2s infinite;
} */
/* 
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(102, 126, 234, 0); }
  100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
} */

@media (max-width: 768px) {
  .content-wrapper {
      grid-template-columns: 1fr;
  }
  
  .map-section {
      padding: 20px;
  }
  
  .details-section {
      padding: 20px;
  }
  
  .section-header h2 {
      font-size: 2rem;
      line-height: 1;
  }
  
  .map-container {
      height: 300px;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery Section */

.gallery-section {
  width: 100%;
  position: relative;
  padding-top: 4rem;
}
.gallery-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Slider Container */
.gallery-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active {
  opacity: 1;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
  z-index: 1;
}
/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 80px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.nav-arrow:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.nav-arrow.prev {
  left: 0;
}
.nav-arrow.next {
  right: 0;
}
.nav-arrow.prev::before {
  content: "‹";
}
.nav-arrow.next::before {
  content: "›";
}
/* Dots Indicator */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.dot.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}
/* Progress Bar - Removed */
.progress-bar {
  display: none;
}
/* Remove Image Counter and Thumbnail Strip */
.image-counter,
.thumbnail-strip {
  display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .gallery-slider {
    height: 50vh;
    min-height: 300px;
  }
  .nav-arrow {
    width: 40px;
    height: 60px;
    font-size: 18px;
  }
  .nav-arrow.prev {
    left: 0;
  }
  .nav-arrow.next {
    right: 0;
  }
}
@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
  }
  .gallery-slider {
    height: 40vh;
    min-height: 250px;
  }
  .nav-arrow {
    width: 35px;
    height: 50px;
    font-size: 16px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}
/* Loading Animation */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Fade In Animation */
.gallery-section {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.construction-section {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 40px 0;
}

.construction-header {
  text-align: center;
  margin-bottom: 40px;
}

.construction-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
}

.construction-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 15px auto 0;
}

.construction-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

.construction-slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}

.construction-slide {
  flex: 0 0 calc(33.333% - 14px);
  position: relative;
  overflow: hidden;
}

.construction-slide-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.construction-slide:hover .construction-slide-image {
  transform: scale(1.05);
}

.construction-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.construction-slide:hover .construction-slide-caption {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .construction-slide {
      flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .construction-slide {
      flex: 0 0 100%;
  }

  .construction-slider-wrapper {
      gap: 0;
  }

  .construction-slide-image {
      height: 280px;
  }

  .construction-title {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .construction-slide-image {
      height: 250px;
  }

  .construction-section {
      padding: 20px 0;
  }

  .construction-slider-container {
      padding: 0 10px;
  }
}

/* Auto-slide animation */
.construction-slider-wrapper.auto-sliding {
  animation: constructionAutoSlide 15s infinite linear;
}

@keyframes constructionAutoSlide {
  0% { transform: translateX(0); }
  33.33% { transform: translateX(-33.333%); }
  66.66% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

/* Pause animation on hover */
.construction-slider-container:hover .construction-slider-wrapper {
  animation-play-state: paused;
}

/* Footer */

.footer {
  width: 100%;
  /* height: 27.125rem; */
  flex-shrink: 0;
  background-color: #000;
  background-image: url(./Images/footer-background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -1rem;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4.5rem 12rem;
  gap: 9rem;
}
.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-logo {
  width: 11.9375rem;
  height: 4.25rem;
  flex-shrink: 0;
  aspect-ratio: 191/68;
}
.footer-address-wrapper {
  gap: 1.38rem;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-address-title {
  color: #fff;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  width: 17.375rem;
}
.footer-address-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 0.5625rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 17.375rem;
}
.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links-title {
  color: #fff;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-links {
  color: #d3d6d3;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-social-media-wrapper {
  display: flex;
  gap: 0.75rem;
}
.footer-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.81rem;
}
.footer-form-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}
.footer-form-title {
  color: #fff;
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.75rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  width: 26.0625rem;
}
.footer-form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter;
  font-size: 0.5625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1rem;
  width: 16.5625rem;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.37rem;
}
.footer-form-input {
  display: flex;
  height: 2.5rem;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 0.5rem;
  flex: 1 0 0;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: transparent;
  color: white;
}
.footer-form-button {
  margin-top: 1.19rem;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.05);
  color: #000;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1.25rem;
  width: 9rem;
  height: 3rem;
}
.footer-copyright {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
}
.footer-copyright-text {
  color: #d3d6d3;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

/* Footer */
@media screen and (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    margin: 2rem 1rem;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo-wrapper {
    align-items: center;
  }

  .footer-logo {
    width: 8rem;
    height: 3rem;
  }

  .footer-address-wrapper {
    gap: 1rem;
  }

  .footer-address-title,
  .footer-links-title {
    font-size: 1rem;
    width: auto;
  }

  .footer-address-subtitle {
    font-size: 0.7rem;
    width: auto;
  }

  .footer-links-wrapper {
    gap: 0.8rem;
  }

  .footer-links {
    font-size: 0.9rem;
  }

  .footer-form-wrapper {
    gap: 1.5rem;
  }

  .footer-form-title {
    font-size: 1rem;
    line-height: 2rem;
    width: auto;
  }

  .footer-form-subtitle {
    font-size: 0.7rem;
    width: auto;
  }

  .footer-form-input {
    height: 2.2rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .footer-form-button {
    width: 100%;
    height: 2.8rem;
    font-size: 0.7rem;
    margin-top: 1rem;
  }

  .footer-copyright-text {
    font-size: 0.7rem;
  }
}




















/* ===== TABLET LANDSCAPE (1024px and below) ===== */
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .hero-section-content {
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
  }
  
  .hero-section-content-wrapper {
    gap: 2rem;
  }
  
  .hero-section-logo {
    width: 16rem;
    height: 5.5rem;
  }
  
  .hero-section-subtitle {
    font-size: 2.2rem;
    line-height: 2.5rem;
    width: auto;
    text-align: center;
  }
  
  .hero-section-form-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
  }
  
  /* About Section */
  .about-section-content-wrapper {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  
  .about-section-image-wrapper {
    width: 100%;
    max-width: 500px;
    height: 300px;
  }
  
  .about-section-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
  
  .about-section-content-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  
  .about-section-content-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  /* USP Section */
  .usp-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }
  
  .usp-card {
    padding: 1.5rem;
  }
  
  .usp-card-title-wrapper {
    width: 100%;
  }
  
  /* Amenities Section */
  .amenities-card-row1,
  .amenities-card-row2,
  .amenities-card-row3 {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .amenities-card {
    width: 10rem;
  }
  
  /* Specifications Section */
  .specification-section-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .specification-card {
    width: 100%;
  }
  
  /* Footer */
  .footer-wrapper {
    margin: 3rem 4rem;
    gap: 4rem;
  }
}

/* ===== TABLET PORTRAIT (768px and below) ===== */
@media screen and (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    height: auto;
    /* min-height: 100vh; */
    padding: 2rem 0;
  }
  
  .hero-section-content {
    padding: 1rem;
    gap: 2rem;
  }
  
  .hero-section-content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-section-logo {
    width: 14rem;
    height: 5rem;
  }
  
  .hero-section-subtitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
    width: 100%;
  }
  
  .hero-section-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .form-wrapper {
    gap: 1rem;
  }
  
  .form-field-wrapper div {
    display: flex;
    /* flex-direction: column; */
    gap: 0.5rem;
  }
  
  .form-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  /* About Section */
  .about-section {
    margin: 4rem auto;
  }
  
  .about-section-wrapper {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .about-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .about-section-image-wrapper {
    height: 250px;
  }
  
  .about-section-content-title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  
  .about-section-content-subtitle {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }
  
  .about-section-content-icons-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .about-icons {
    width: 2rem;
    height: 2rem;
  }
  
  .about-icons-para {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  /* USP Section */
  .usp-section-wrapper {
    padding: 0 1rem;
    margin: 4rem auto;
  }
  
  .usp-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .usp-card-wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .usp-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .usp-card-title {
    font-size: 1.2rem;
  }
  
  .usp-card-subtitle {
    font-size: 0.95rem;
  }
  
  /* Amenities Section */
  .amenities-section {
    margin: 4rem auto;
  }
  
  .amenities-section-wrapper {
    padding: 0 1rem;
  }
  
  .amenities-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .amenities-card-row1,
  .amenities-card-row2,
  .amenities-card-row3 {
    justify-content: center;
    gap: 1rem;
  }
  
  .amenities-card {
    width: 8rem;
  }
  
  .amenities-card-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .amenities-card-title {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  
  /* Specifications Section */
  .specification-section-wrapper {
    margin: 4rem auto;
    padding: 0 1rem;
  }
  
  .specification-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .specification-section-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .specification-card {
    width: 100%;
  }
  
  .specification-card-title {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  
  /* Gallery Section */
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .gallery-slider {
    height: 50vh;
    min-height: 300px;
  }
  
  /* Footer */
  .footer-wrapper {
    flex-direction: column;
    margin: 2rem 1rem;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-logo {
    width: 10rem;
    height: 3.5rem;
  }
  
  .footer-address-title,
  .footer-links-title,
  .footer-form-title {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
  
  .footer-form-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-form-input {
    height: 2.5rem;
    padding: 0.8rem 1rem;
  }
  
  .footer-form-button {
    width: 100%;
    height: 3rem;
    margin-top: 1rem;
  }
}

/* ===== MOBILE LANDSCAPE (480px and below) ===== */
@media screen and (max-width: 480px) {
  /* Hero Section */
  .hero-section-logo {
    width: 12rem;
    height: 4.2rem;
  }
  
  .hero-section-subtitle {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  
  .hero-section-form-wrapper {
    padding: 1.2rem;
  }
  
  .form-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  .form-subtitle {
    font-size: 0.65rem;
  }
  
  .form-input {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  /* About Section */
  .about-section-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  
  .about-section-content-title {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  
  .about-section-content-subtitle {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
  
  .about-section-content-icons-wrapper {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  /* USP Section */
  .usp-section-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  
  .usp-card {
    padding: 1.2rem;
  }
  
  .usp-card-title {
    font-size: 1.1rem;
  }
  
  .usp-card-subtitle {
    font-size: 0.9rem;
  }
  
  /* Amenities Section */
  .amenities-section-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  
  .amenities-card-row1,
  .amenities-card-row2,
  .amenities-card-row3 {
    /* flex-direction: column; */
    align-items: center;
    /* gap: 1.5rem; */
  }
  .parks{
    display: none;
  }
  
  .amenities-card {
    width: 10rem;
  }
  
  .amenities-card-icon {
    width: 4rem;
    height: 4rem;
  }
  
  .amenities-card-title {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
  
  /* Specifications Section */
  .specification-section-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  
  .specification-section-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .specification-card-title {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  
  /* Gallery Section */
  .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-slider {
    height: 40vh;
    min-height: 250px;
  }
  
  /* Construction Section */
  .construction-title {
    font-size: 1.3rem;
  }
  
  .construction-slide-image {
    height: 200px;
  }
  
  /* Footer */
  .footer-wrapper {
    margin: 1.5rem 0.8rem;
    gap: 2rem;
  }
  
  .footer-logo {
    width: 8rem;
    height: 3rem;
  }
  
  .footer-address-title,
  .footer-links-title,
  .footer-form-title {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  
  .footer-address-subtitle {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  
  .footer-links {
    font-size: 0.85rem;
  }
  
  .footer-form-subtitle {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  
  .footer-social-media-wrapper {
    gap: 1rem;
  }
  
  .footer-social-media-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* ===== MOBILE PORTRAIT (320px and below) ===== */
@media screen and (max-width: 320px) {
  /* Hero Section */
  .hero-section-content {
    padding: 0.8rem;
  }
  
  .hero-section-logo {
    width: 10rem;
    height: 3.5rem;
  }
  
  .hero-section-subtitle {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  
  .hero-section-form-wrapper {
    padding: 1rem;
  }
  
  /* About Section */
  .about-section-wrapper {
    padding: 0 0.8rem;
  }
  
  .about-section-image-wrapper {
    height: 200px;
  }
  
  /* USP Section */
  .usp-section-wrapper {
    padding: 0 0.8rem;
  }
  
  .usp-card {
    padding: 1rem;
  }
  
  /* Amenities Section */
  .amenities-section-wrapper {
    padding: 0 0.8rem;
  }
  
  .amenities-card {
    width: 8rem;
  }
  
  /* Specifications Section */
  .specification-section-wrapper {
    padding: 0 0.8rem;
  }
  
  /* Gallery Section */
  .gallery-slider {
    height: 35vh;
    min-height: 200px;
  }
  
  /* Footer */
  .footer-wrapper {
    margin: 1rem 0.5rem;
  }
  
  .footer-logo {
    width: 7rem;
    height: 2.5rem;
  }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: auto;
    padding: 1rem 0;
  }
  
  .hero-section-content {
    flex-direction: row;
    gap: 2rem;
  }
  
  .hero-section-content-wrapper {
    flex-direction: row;
    gap: 1rem;
  }
  
  .hero-section-logo {
    width: 8rem;
    height: 3rem;
  }
  
  .hero-section-subtitle {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  
  .gallery-slider {
    height: 80vh;
    min-height: 300px;
  }
}

/* ===== UTILITY CLASSES FOR RESPONSIVE DESIGN ===== */
.container-responsive {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .container-responsive {
    padding: 0 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .container-responsive {
    padding: 0 0.5rem;
  }
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 768px) {
  h1 { font-size: 1.5rem; line-height: 1.8rem; }
  h2 { font-size: 1.3rem; line-height: 1.6rem; }
  h3 { font-size: 1.1rem; line-height: 1.4rem; }
  p { font-size: 0.9rem; line-height: 1.3rem; }
}

@media screen and (max-width: 480px) {
  h1 { font-size: 1.3rem; line-height: 1.6rem; }
  h2 { font-size: 1.1rem; line-height: 1.4rem; }
  h3 { font-size: 1rem; line-height: 1.3rem; }
  p { font-size: 0.85rem; line-height: 1.2rem; }
}

