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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  /* overflow-x: hidden; */
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0 50px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  width: 150px;
}
.logo img {
  width: 100%;
  height: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("../image/Slider-1.jpg");
  /* background: url("../image/hero.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10000;
}

/* content container */
.content-container {
  margin-top: 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: black;
}

.title-block h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  font-weight: 300;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.1rem;
}
.info-item .solid {
  color: #444;
}

.info-item svg {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.status-coming {
  color: orange;
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle {
  width: 25px;
  height: 25px;
  border: 2px solid orange;
  border-radius: 50%;
}

/* Description Styling */
.description-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  width: 100%;
}

.btn-visit {
  padding: 15px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.btn-visit a{
  text-decoration: none;
  color: white;
}
.fa-arrow-right{
  transition:all 0.6s ease;
  opacity: 0;
  display: none
}
.btn-visit:hover .fa-arrow-right{
  margin-left: 8px;
  opacity: 1;
  display: inline;
}

@media (max-width: 878px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .title-block h1 {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .title-block h1 {
    font-size: 1.8rem;
  }

  .info-item {
    font-size: 1rem;
  }
}

/* --- CAROUSEL CONTAINER --- */
.carousel {
  overflow: hidden;
}
.carousel-main-container {
  margin: 0 20px;
  display: flex;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-top: 50px;
}

.left-side {
  width: 40%;
  height: 100%;
  background: #000;
  color: #fff;
  position: relative;
}

.swiper-text {
  width: 100%;
  height: 100%;
}

.text-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12%;
  opacity: 0 !important;
  transition: opacity 0.5s ease;
}

.swiper-slide-active.text-slide {
  opacity: 1 !important;
}

.text-slide h1 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.text-slide p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 25px;
  width: 80%;
}

.btn-action {
  padding: 12px 30px;
  background: #fff;
  color: #000;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.right-side {
  width: 80%;
  height: 100%;
  background: #fff;
}

.swiper-photo {
  width: 100%;
  height: 100%;
}

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

.pagination-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  background: #fff;
}

.custom-dots {
  position: static !important;
  width: auto !important;
}

.custom-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #000 !important;
  opacity: 0.2;
  margin: 0 6px !important;
  transition: opacity 0.3s;
}

.custom-dots .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .carousel-main-container {
    height: 100vh;
    flex-direction: column;
  }
  .left-side,
  .right-side {
    width: 100%;
    height: 50%;
  }
}

/* About Section */
.about {
  padding: 0 20px;
  margin-top: 40px;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.about-content .left h1 {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: black;
}
.about-content .left p {
  font-size: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: black;
}
.about-link {
  text-decoration: none;
}
.about-content .right button {
  padding: 18px 20px;
  border-radius: 40px;
  background-color: #fff;
  border: 1px solid black;
  cursor: pointer;
  transition: all 0.5s ease;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: black;
}

.about-content .right:hover .fa-download {
  opacity: 1;
  transition: all 0.5s ease;
}

.about-content .right .fa-download {
  position: relative;
  left: -50px;
  color: gray;
  opacity: 0;
}

.about-content .right:hover button {
  padding-right: 50px;
  background-color: black;
  color: #fff;
}
.about img {
  width: 100%;
  height: 100%;
}
.about .discribe {
  font-size: 10px;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.mini-about-link .mini-right {
  display: none;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-content .right button {
    margin-top: 20px;
  }
  .about-content .left p {
    font-size: 20px;
  }
}

/* Features Section */
.features {
  padding: 0 20px;
  margin-top: 100px;
  font-family: "Inter", sans-serif;
  color: black;
}
.features-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.features-content .left h1 {
  font-size: 18px;
  font-weight: 600;
}
.features-content .left p {
  font-size: 30px;
  font-weight: 300;
}
.about-link {
  text-decoration: none;
}
.features-content .right button {
  padding: 18px 20px;
  border-radius: 40px;
  background-color: #fff;
  border: 1px solid black;
  cursor: pointer;
  transition: all 0.5s ease;
  font-weight: 400;
}

.features-content .right:hover .fa-download {
  opacity: 1;
  transition: all 0.5s ease;
}

.features-content .right .fa-download {
  position: relative;
  left: -50px;
  color: #ccc;
  opacity: 0;
}

.features-content .right:hover button {
  padding-right: 50px;
  background-color: black;
  color: #fff;
}

.feature-container {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.floorplan-container {
  display: flex;
  width: 90%;
  max-width: 1100px;
  gap: 60px;
  align-items: flex-start;
}

.tabs-wrapper {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 0;
  margin-top: 0;
}

.tab-btn {
  width: 100%;
  padding: 18px;
  border-radius: 50px;
  border: 1px solid #eee;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: top;
}

.tab-btn.hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border-width: 0;
  pointer-events: none;
  visibility: hidden;
}

.tab-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.floorplan-display {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

#main-plan-img {
  max-width: 100%;
  max-height: 550px;
  object-fit: contain;
  transition: opacity 0.3s ease;
  opacity: 0;
  display: block;
  margin-top: 0;
}

.area-info {
  width: 100%;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
  margin-top: 20px;
  display: none;
}

@media (max-width: 850px) {
  .floorplan-container {
    flex-direction: column;
    align-items: center;
  }
  .tabs-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .features-content {
    flex-direction: column;
  }
  .features-content .right button {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .features-content .left p {
    font-size: 20px;
  }
}

/* Icons */
.icons {
  margin-top: 50px;
  padding: 0 20px;
   font-family: "Inter", sans-serif;
   font-weight: 300;
}
.header-fr {
  font-size: 20px;
  font-weight: 600;
  color: black;
}
.header-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  font-size: 600;
  color: black;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.amenity-label {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
  }
}

@media (max-width: 768px) {
  .header-title {
    margin-bottom: 40px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 2fr);
    gap: 35px 10px;
  }

  .amenity-label {
    font-size: 14px;
  }
}

/* Location  */
.location {
  padding: 0px 20px;
  margin-top: 170px;
   font-family: "Inter", sans-serif;
font-weight: 300;
}
.title-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  color: black;
  font-weight: 600;
}
.title-content .left {
  flex: 1;
}
.title-content .right {
  flex: 1;
}
.location .header-Loc {
  font-size: 20px;
}
.location .header-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: clamp(30px, 8vw, 60px);
  line-height: 1.2;
  font-weight: 300;
}

.main-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-direction: row;
}

.map-section {
  flex: 1.8;
  position: relative;
  width: 100%;
}

#map {
  width: 100%;
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 4px;
  filter: grayscale(1) contrast(1.1);
  z-index: 1;
}

.map-controls {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  overflow: hidden;
}

.map-controls button {
  width: 44px;
  height: 44px;
  border: none;
  background: white;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-controls button:active {
  background: #f0f0f0;
}
.map-controls button:first-child {
  border-bottom: 1px solid #eee;
}

.connections-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  width: 100%;
}

.connection-item {
  display: flex;
  flex-direction: column;
}

.number {
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 300;
  color: #555;
  line-height: 1;
}

.description {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .main-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  #map {
    height: 400px;
  }
  .connections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header-title {
    text-align: left;
  }
  #map {
    height: 320px;
  }
  .connections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .number {
    font-size: 40px;
  }
  .description {
    font-size: 14px;
  }
}

/* --- SMALL PHONE (380px) --- */
@media (max-width: 380px) {
  .connections-grid {
    grid-template-columns: 1fr;
  }
}

/* Form */
.form {
  margin: 0 20px;
  padding: 0 20px;
  background-color: #000;
  padding-bottom: 100px;
  margin-top: 200px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}
.form h1 {
  color: #fff;
  padding-top: 80px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.form h2 {
  color: #fff;
  margin-bottom: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 35px;
}
.form-container {
  max-width: 1000px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

input,
select {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  border: none;
  padding: 0 25px;

  font-size: 15px;
  background: #fff;
  color: #333;
  outline: none;
}
select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 15px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.phone-wrapper {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}
.country-key {
  width: 100px;
  border-right: 1px solid #eee;
  border-radius: 0;
}
.phone-input {
  border-radius: 0;
  flex: 1;
}

.consent-area {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
}
.consent-area input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.register-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* ------------- */

@media (max-width: 768px) {
  .navbar,
  .about,
  .features,
  .gallery,
  .amenities,
  .location,
  .cta,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
