.inter-requral {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.montaga-regular {
  font-family: "Montaga", serif;
  font-weight: 400;
  font-style: normal;
}
.advent-pro-regular {
  font-family: "Advent Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Gilroy"; */
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
  scroll-behavior: smooth;
}
.main-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* Navbar Container */
.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  padding: 1rem 0;
  transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.visible {
  transform: translateY(0);
}

/* Navbar Wrapper */
.navbar-wrapper {
  width: 90%;
  max-width: 1400px;
  background-color: rgba(13, 26, 40, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.nav-logo {
  height: 50px;
  width: 80px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 0.5rem 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nav-links::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

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

.nav-links:hover {
  color: #fff;
}

/* Contact Button */
.contact-btn {
  background-color: transparent;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: rgba(13, 26, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 6rem 2rem 2rem 2rem;
  transition: right 0.4s ease-in-out;
  z-index: 998;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
}

.mobile-nav-links a:hover {
  color: #667eea;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
}

.mobile-contact-btn {
  background-color: transparent;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: block;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
}

.mobile-contact-btn:hover {
  background-color: #fff;
  color: #0D1A28;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Section for Demo */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 100px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-wrapper {
    padding: 1rem 2rem;
  }

  .nav-links-wrapper {
    gap: 1rem;
  }

  .nav-links {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    width: 95%;
  }

  .nav-links-wrapper,
  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .nav-logo {
    height: 40px;
    width: 65px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar-wrapper {
    padding: 0.8rem 1.2rem;
  }

  .nav-logo {
    height: 35px;
    width: 55px;
  }

  .hamburger span {
    width: 25px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}















.hero-section {
  width: 100%;
  min-height: 130vh;
  background-image: url(./Imges/Hero-Section-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-section-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: -5rem;
}
.section-title {
  font-size: 70px;
  font-family: "Montaga", serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.hero-content-line {
  width: 80%;
  height: 1px;
  background-color: #fff;
}
.section-para {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.hero-section-welcome-wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 27px;
  margin-right: 4rem;
}
.hero-welcome-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.hero-line {
  width: 400px;
  height: auto;
}
.hero-welcome {
  font-size: 88px;
  font-family: "Montaga", serif;
  font-weight: 400;
  color: #fff;
}
.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.hero-logo {
  width: 150px;
  height: 122px;
}
.hero-logo-para {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

/* project-section */

.project-section {
  width: 100%;
  background-color: black;
  padding: 5rem 0;
  position: relative;
}
.project-section-wrapper {
  width: 100%;
  /* margin-left: 170px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.project-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  width: 100%;
  position: relative;
}
.project-title {
  font-size: 53px;
  font-family: "Advent Pro", sans-serif;
  font-weight: 400;
  color: #fff;
  max-width: 460px;
}
.project-description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 40px;
  margin-right: 8rem;
}
.project-para {
  font-size: 14px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
  text-transform: uppercase;
}
.projects-points-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  max-width: 600px;
  gap: 2rem;
  color: white;
}
.projects-points-wrapper li {
  font-size: 8px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
.project-images-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.project-image {
  /* width: 1222px; */
  width: 100%;
  height: 510px;
  right: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}
.project-map {
  width: 390px;
  height: 210px;
  border-bottom-left-radius: 48px;
  z-index: 2;
  position: absolute;
  left: 0;
}
.project-arrow {
  position: absolute;
  left: 166px;
  top: 52px;
  width: 313px;
  height: 208px;
}

/* masterplan-section */

.masterplan-section {
  width: 100%;
  height: auto;
  background-color: #000;
  position: relative;
}

.masterplan-section-wrapper {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.masterplan-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.masterplan-content-wrapper {
  width: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.masterplan-image {
  width: 100%;
  height: 50%;
}

/* location-advantages */

.location-advantages {
  background-image: url(./Imges/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  height: 100vh;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}
.location-km {
  color: white;
}
.last-point {
  margin-right: 8rem;
}
.location-cards-wrapper {
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  /* position: absolute; */
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}

.location-card-1 {
  position: absolute;
  top: 60%;
}
.location-card-2 {
  position: absolute;
  top: 55%;
  right: 7%;
}
.location-card-3 {
  position: absolute;
  top: 30%;
  right: 5%;
}
.location-card-4 {
  position: absolute;
  top: 10%;
  right: 0;
}
.location-card-5 {
  position: absolute;
  top: 40%;
  right: 20%;
}
.location-card-6 {
  position: absolute;
  top: 15%;
  right: 17%;
}
.location-card-7 {
  position: absolute;
  top: 80%;
  right: 35%;
}
.location-card-8 {
  position: absolute;
  top: 70%;
  right: 20%;
}
.location-card-9 {
  position: absolute;
  top: 90%;
  right: 10%;
}
.location-card-10 {
  position: absolute;
  top: 85%;
  right: 25%;
}
.location-card-11 {
  position: absolute;
  top: 1%;
  right: 10%;
}
.location-card-12 {
  position: absolute;
  top: 75%;
  right: 8%;
}
.location-card-13 {
  position: absolute;
  top: 17%;
  right: 30%;
}
.location-card-14 {
  position: absolute;
  top: 55%;
  right: 35%;
}
.location-card-15 {
  position: absolute;
  top: 30%;
  right: 40%;
}

:root {
  /* tune these to control circle sizes and spacing */
  --ring-1: 10vmin; /* smallest visible circle radius */
  --ring-2: 20vmin;
  --ring-3: 30vmin;
  --ring-4: 40vmin;
  --ring-5: 52vmin;
  --ring-6: 66vmin; /* largest outer ring */
  --bg-dark: #070707; /* main background */
  --edge-dark: #050505; /* left vertical darker bar */
}

html,
body {
  height: 100%;
  margin: 0;
}

/* full-screen canvas */
.canvas {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* content sits left like the photo */
}

/* left vertical darker strip (like image) */
.canvas::before {
  content: "";
  position: absolute;
  left: 6vmin; /* distance from left edge */
  top: 0;
  bottom: 0;
  width: 9vmin; /* thickness of the dark strip */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
  z-index: 5;
  pointer-events: none;
}

/*
  Concentric rings are made with several radial-gradients stacked as the
  element's background. Each radial gradient is centered at the right side
  (100% 50%) so the circles appear cut off along the right edge like the image.
*/
.rings {
  position: absolute;
  inset: 0; /* cover whole canvas */
  z-index: 1;
  pointer-events: none;
  /* stack of radial gradients => inner-most listed first */
  background-image:
    /* inner circle (lightest) */ radial-gradient(
      circle at 100% 50%,
      rgba(180, 170, 170, 0.3) 0 calc(var(--ring-1) - 0.5vmin),
      rgba(180, 170, 170, 0.18) calc(var(--ring-1) - 0.5vmin)
        calc(var(--ring-1) + 3vmin),
      transparent calc(var(--ring-1) + 3vmin)
    ),
    /* next ring */
      radial-gradient(
        circle at 100% 50%,
        rgba(160, 150, 150, 0.22) 0 calc(var(--ring-2) - 0.5vmin),
        rgba(160, 150, 150, 0.14) calc(var(--ring-2) - 0.5vmin)
          calc(var(--ring-2) + 3vmin),
        transparent calc(var(--ring-2) + 3vmin)
      ),
    /* middle ring */
      radial-gradient(
        circle at 100% 50%,
        rgba(140, 130, 130, 0.2) 0 calc(var(--ring-3) - 0.5vmin),
        rgba(140, 130, 130, 0.12) calc(var(--ring-3) - 0.5vmin)
          calc(var(--ring-3) + 3vmin),
        transparent calc(var(--ring-3) + 3vmin)
      ),
    /* next */
      radial-gradient(
        circle at 100% 50%,
        rgba(120, 115, 115, 0.18) 0 calc(var(--ring-4) - 0.5vmin),
        rgba(120, 115, 115, 0.1) calc(var(--ring-4) - 0.5vmin)
          calc(var(--ring-4) + 3vmin),
        transparent calc(var(--ring-4) + 3vmin)
      ),
    /* large outer rings */
      radial-gradient(
        circle at 100% 50%,
        rgba(100, 96, 96, 0.2) 0 calc(var(--ring-5) - 0.5vmin),
        rgba(100, 96, 96, 0.12) calc(var(--ring-5) - 0.5vmin)
          calc(var(--ring-5) + 3vmin),
        transparent calc(var(--ring-5) + 3vmin)
      ),
    radial-gradient(
      circle at 100% 50%,
      rgba(80, 78, 78, 0.24) 0 calc(var(--ring-6) - 0.5vmin),
      rgba(80, 78, 78, 0.14) calc(var(--ring-6) - 0.5vmin)
        calc(var(--ring-6) + 3vmin),
      transparent calc(var(--ring-6) + 3vmin)
    );
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  mix-blend-mode: normal;
  filter: blur(0.2px); /* tiny blur for soft edges */
}

/* optional content area on the left so you can place text or cards */
.content {
  position: relative;
  z-index: 10;
  width: 64%;
  max-width: 1200px;
  padding: 6vmin;
  color: #eee;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

h1 {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
p {
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}
/* responsive tweaks to keep rings large on small screens */
@media (max-width: 600px) {
  :root {
    --ring-1: 12vmin;
    --ring-2: 26vmin;
    --ring-3: 38vmin;
    --ring-4: 50vmin;
    --ring-5: 66vmin;
    --ring-6: 86vmin;
  }
  .canvas::before {
    left: 4vmin;
    width: 12vmin;
  }
  .content {
    width: 78%;
    padding: 5vmin;
  }
}

.cta-section {
  width: 130%;
  height: 100%;
  background-image: url(./Imges/Melange\ One\ -\ 5.11.25\ PRE.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}
.cta-section-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  padding: 8rem;
  text-align: center;
  gap: 5rem;
  /* margin-left: 15rem; */
}
.cta-title {
  font-size: 33px;
  line-height: 49px;
  font-family: "Montaga", serif;
  color: #BDA69E;
  text-transform: uppercase;
  text-align: left !important;
}
.cta-1 {
  text-align: center;
}
.cta-2 {
  /* margin-right: 7rem; */
  text-align: center;
}

/* outdoor-amenities-section */

.outdoor-amenities-section {
  width: 100%;
  background-color: #000;
  position: relative;
}
.outdoor-amenities-section-white {
  width: 100%;
  background-color: #fff;
  position: relative;
}
.amenities-wrapper {
  padding: 6rem 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 118px;
  position: relative;
}
.amenities-title-wrappers {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.amenities-title {
  font-size: 53px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.amenities-title-black {
  font-size: 53px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #000;
  text-transform: uppercase;
}
.amenities-para {
  font-size: 14px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #6e6563;
}
.amenities-card-wrappers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.amenities-card-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.amenities-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.amenities-icons {
  width: 30px;
  height: 30px;
}
.amenities-card-title {
  font-size: 10px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  /* color: #6e6563; */
  color: #fff;
  text-align: center;
}
.amenities-card-title-black {
  font-size: 10px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #000000;
  text-align: center;
}
.amenities-arrows {
  position: absolute;
  top: 40%;
  left: 43%;
  width: 114px;
  height: 107px;
  object-fit: contain;
  object-position: center;
}
.amenities-arrows-white {
  position: absolute;
  top: 40%;
  left: 48%;
  width: 114px;
  height: 107px;
  object-fit: contain;
  object-position: center;
}

/* showcase-section */

.showcase-section {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}
.showcase-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12rem 5rem;
}
.showcase-section-content {
  width: 100%;
  height: 900px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase-bg {
  height: 700px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
  margin-top: 10%;
  margin-left: -10%;
  position: absolute;
}
.showcase-image-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 347px;
  height: 423px;
  object-position: center;
  z-index: 1;
}
.showcase-image-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 653px;
  height: 363px;
  object-position: center;
  z-index: 1;
}
.showcase-image-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 270px;
  height: 360px;
  object-position: center;
  z-index: 1;
}
.showcase-image-4 {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 276px;
  height: 360px;
  object-position: center;
  z-index: 1;
}
.showcase-content-wrapper {
  max-width: 616px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 18rem;
  margin-left: 3rem;
}
.showcase-title {
  font-size: 92px;
  font-weight: 400;
  font-family: "Montaga", serif;
  color: #fff;
  text-align: center;
  max-width: 400px;
  line-height: 94px;
}
.showcase-para {
  font-size: 14px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
  text-align: center;
  max-width: 400px;
  line-height: 21px;
}

/* footer-section */
.footer-section {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}
.footer-wrapper {
  padding: 60px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 85px;
}
.footer-top-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 106px;
}
.footer-top-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.footer-top-content-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.footer-top-title {
  font-size: 40px;
  font-weight: 400;
  font-family: "Montaga", serif;
  color: #fff;
  text-align: left;
}
.footer-top-para {
  font-size: 12px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
  text-align: left;
  width: 100%;
}
.footer-top-content-links-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.footer-logo {
  height: 145px;
  width: 180px;
}
.footer-address-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  width: 100%;
  gap: 0.5rem;
}
.footer-address {
  font-size: 12px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
}
.footer-address span {
  font-size: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #fff;
}
.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  width: 100%;
  text-transform: uppercase;
}
.footer-links {
  font-size: 1rem;
  font-weight: 400;
  /* font-family: "Montaga", serif; */
  color: #fff;
  text-align: left;
  text-decoration: none;
  /* font-size: 12px; */
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.footer-top-form-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.footer-form-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.form-title {
  font-size: 40px;
  font-weight: 400;
  font-family: "Montaga", serif;
  color: #fff;
  text-align: left;
  width: 100%;
}
.form-para {
  font-size: 12px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
  text-align: left;
  width: 100%;
  margin-top: -15px;
}
.footer-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 0.6rem;
}
.form-input {
  border: 1px solid #fff;
  padding: 16px 24px;
  width: 375px;
  font-size: 12px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  color: #c2c2c2;
  background-color: transparent;
}
.form-submit-btn {
  width: 130px;
  background-color: #fff;
  color: #000;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.footer-social-media-icons-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.social-media-icons {
  width: 24px;
  height: 24px;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 37px;
}
.footer-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.footer-bottom-para {
  font-size: 12px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #fff;
}
.location-description-title {
  font-size: 40px;
  font-weight: 400;
  font-family: "Montaga", serif;
  color: #fff;
}


.location-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.location-heading-wrapper {
  color: white;
  margin-bottom: 4rem;
  text-align: center;
}

.location-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0;
}

.location-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 6vw, 8rem);
  width: 100%;
  flex-wrap: wrap;
  padding: 2rem;
}

.map-container {
  position: relative;
  width: clamp(400px, 45vw, 600px);
  height: clamp(400px, 45vw, 600px);
  flex-shrink: 0;
}

.location-description {
  flex: 1;
  /* min-width: 300px; */
  max-width: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5.5rem;
}

.location-description p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  margin: 0;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-1 {
  width: 90%;
  height: 90%;
}
.circle-2 {
  width: 70%;
  height: 70%;
}
.circle-3 {
  width: 50%;
  height: 50%;
}
.circle-4 {
  width: 30%;
  height: 30%;
  background: rgba(139, 119, 101, 0.3);
}

.center-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  /* background: radial-gradient(circle, #8b7765 0%, #6b5d52 100%); */
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(139, 119, 101, 0.5);
  background-image: url(./Imges/circle.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.distance-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(9px, 1.2vw, 12px);
  font-weight: 600;
  letter-spacing: 1px;
}

.label-500m {
  top: 48%;
  right: 52%;
}
.label-200m {
  top: 44%;
  right: 56%;
}
.label-1km {
  top: 36%;
  right: 60%;
}
.label-2km {
  top: 28%;
  right: 64%;
}
.label-3km {
  top: 20%;
  right: 68%;
}
.label-5km {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.landmark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3px, 0.6vw, 6px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.landmark-icon {
  width: clamp(25px, 3.5vw, 40px);
  height: clamp(25px, 3.5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.8vw, 20px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.landmark-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.landmark-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(8px, 1vw, 10px);
  text-align: center;
  max-width: clamp(60px, 8vw, 90px);
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .location-content-wrapper {
    gap: 3rem;
  }
  
  .map-container {
    width: clamp(350px, 50vw, 500px);
    height: clamp(350px, 50vw, 500px);
  }
  
  .location-description p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .location-section {
    padding: 4rem 1.5rem;
  }
  
  .location-heading-wrapper {
    margin-bottom: 3rem;
  }
  
  .location-content-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .map-container {
    width: min(350px, 90vw);
    height: min(350px, 90vw);
  }
  
  .location-description {
    text-align: center;
    gap: 2rem;
  }
  
  .location-description p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .landmark-title {
    max-width: 55px;
    font-size: 7px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .location-section {
    padding: 3rem 1rem;
  }
  
  .map-container {
    width: min(300px, 90vw);
    height: min(300px, 90vw);
  }
  
  .location-description p {
    font-size: 0.9rem;
  }
}
/* ============================================
   RESPONSIVE MEDIA QUERIES - MELANGE ONE
   Professional responsive design for all devices
   ============================================ */

/* ============================================
   LARGE DESKTOP (1440px and above)
   ============================================ */
@media screen and (min-width: 1440px) {
  .main-container {
    max-width: 1400px;
  }

  .section-title {
    font-size: 60px;
  }

  .hero-welcome {
    font-size: 66px;
  }

  .project-title {
    font-size: 60px;
  }
}

/* ============================================
     DESKTOP (1024px - 1439px)
     ============================================ */
@media screen and (max-width: 1439px) {
  .main-container {
    max-width: 1200px;
    padding: 0 40px;
  }

  .section-title {
    font-size: 65px;
  }

  .hero-section-welcome-wrapper {
    margin-right: 3rem;
  }

  .project-section-wrapper {
    margin-left: 100px;
  }

  .showcase-section-wrapper {
    padding: 10rem 4rem;
  }
}

/* ============================================
     LAPTOP (768px - 1023px)
     ============================================ */
@media screen and (max-width: 1023px) {
  .main-container {
    max-width: 100%;
    padding: 0 30px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 100vh;
  }

  .section-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-section-welcome-wrapper {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-right: 2rem;
  }

  .hero-welcome {
    font-size: 60px;
  }

  .hero-line {
    width: 250px;
  }

  .hero-logo {
    width: 130px;
    height: 105px;
  }

  /* Project Section */
  .project-section-wrapper {
    margin-left: 0;
    /* padding: 0 30px; */
  }

  .project-content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .project-title {
    font-size: 42px;
    max-width: 100%;
  }

  .project-description-wrapper {
    margin-right: 0;
  }

  .project-arrow {
    display: none;
  }

  .project-images-wrapper {
    justify-content: center;
  }

  .project-image {
    width: 100%;
    height: auto;
  }

  .project-map {
    width: 300px;
    height: 180px;
  }

  /* Amenities */
  .amenities-card-row {
    gap: 40px;
    flex-wrap: wrap;
  }

  .amenities-title,
  .amenities-title-black {
    font-size: 42px;
  }

  /* Showcase Section */
  .showcase-section-wrapper {
    padding: 8rem 2rem;
  }

  .showcase-section-content {
    height: 700px;
  }

  .showcase-title {
    font-size: 70px;
    line-height: 75px;
  }

  .showcase-image-1,
  .showcase-image-2,
  .showcase-image-3,
  .showcase-image-4 {
    width: 280px;
    height: auto;
  }

  /* CTA Section */
  .cta-section-wrapper {
    padding: 6rem 4rem;
    gap: 3rem;
  }

  .cta-title {
    font-size: 36px;
    line-height: 42px;
  }

  /* Footer */
  .footer-top-content {
    flex-direction: column;
    gap: 60px;
  }

  .footer-top-content-links-wrapper {
    gap: 3rem;
    flex-wrap: wrap;
  }

  .form-input {
    width: 100%;
  }
}

/* ============================================
     TABLET (600px - 767px)
     ============================================ */
@media screen and (max-width: 767px) {
  .main-container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 90vh;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .section-para,
  .hero-logo-para {
    font-size: 12px;
  }

  .hero-section-welcome-wrapper {
    position: static;
    margin: 3rem 0 2rem 0;
    align-items: center;
    text-align: center;
  }

  .hero-welcome-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .hero-welcome {
    font-size: 48px;
  }

  .hero-line {
    width: 200px;
  }

  .hero-logo {
    width: 110px;
    height: 90px;
  }

  /* Project Section */
  .project-section {
    padding: 6rem 0;
  }

  .project-title {
    font-size: 32px;
    text-align: center;
  }

  .project-para {
    font-size: 12px;
    text-align: center;
  }

  .projects-points-wrapper {
    max-width: 100%;
    justify-content: center;
  }

  .projects-points-wrapper li {
    font-size: 10px;
  }

  .project-map {
    width: 250px;
    height: 150px;
  }

  /* Amenities */
  .amenities-wrapper {
    padding: 4rem 0;
    gap: 60px;
  }

  .amenities-title-wrappers {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .amenities-title,
  .amenities-title-black {
    font-size: 32px;
  }

  .amenities-para {
    font-size: 12px;
    text-align: center;
  }

  .amenities-card-row {
    gap: 30px;
  }

  .amenities-card-wrappers {
    gap: 40px;
  }

  .amenities-arrows,
  .amenities-arrows-white {
    display: none;
  }

  /* Showcase */
  .showcase-section-wrapper {
    padding: 6rem 1.5rem;
  }

  .showcase-section-content {
    height: 600px;
  }

  .showcase-title {
    font-size: 48px;
    line-height: 52px;
    max-width: 300px;
  }

  .showcase-para {
    font-size: 12px;
    max-width: 300px;
  }

  .showcase-bg {
    margin-top: 15%;
  }

  .showcase-image-1,
  .showcase-image-3 {
    width: 220px;
    height: auto;
  }

  .showcase-image-2,
  .showcase-image-4 {
    width: 200px;
    height: auto;
  }

  /* Masterplan */
  .masterplan-image {
    width: 100%;
    height: auto;
  }

  /* Location */
  .map-container {
    width: 95vw;
    height: 95vw;
  }

  /* CTA */
  .cta-section-wrapper {
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-title {
    font-size: 28px;
    line-height: 34px;
  }

  .cta-1,
  .cta-2 {
    text-align: center;
    margin-right: 0;
  }

  /* Footer */
  .footer-wrapper {
    padding: 40px 0;
    gap: 50px;
  }

  .footer-top-content-links-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-address-wrapper {
    align-items: center;
    text-align: center;
  }

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

  .footer-top-title,
  .form-title {
    font-size: 28px;
    text-align: center;
  }

  .footer-top-para,
  .form-para {
    font-size: 11px;
    text-align: center;
  }

  .footer-social-media-icons-wrapper {
    justify-content: center;
  }
}

/* ============================================
     MOBILE LARGE (480px - 599px)
     ============================================ */
@media screen and (max-width: 599px) {
  .main-container {
    padding: 0 16px;
  }

  /* Hero Section */
  .section-title {
    font-size: 28px;
  }

  .hero-welcome {
    font-size: 36px;
  }

  .hero-line {
    width: 150px;
  }

  .hero-content-line {
    width: 90%;
  }

  /* Project Section */
  .project-section {
    padding: 4rem 0;
  }

  .project-title {
    font-size: 26px;
  }

  .project-para {
    font-size: 11px;
  }

  .project-para br {
    display: none;
  }

  .projects-points-wrapper li {
    font-size: 9px;
  }

  .project-image {
    height: 300px;
  }

  .project-map {
    width: 200px;
    height: 120px;
  }

  /* Amenities */
  .amenities-wrapper {
    padding: 3rem 0;
  }

  .amenities-title,
  .amenities-title-black {
    font-size: 26px;
  }

  .amenities-card-row {
    gap: 25px;
    justify-content: space-around;
  }

  .amenities-icons {
    width: 25px;
    height: 25px;
  }

  .amenities-card-title,
  .amenities-card-title-black {
    font-size: 9px;
  }

  /* Showcase */
  .showcase-section-wrapper {
    padding: 4rem 1rem;
  }

  .showcase-section-content {
    height: 500px;
  }

  .showcase-title {
    font-size: 36px;
    line-height: 42px;
  }

  .showcase-para {
    font-size: 11px;
    line-height: 18px;
  }

  .showcase-content-wrapper {
    margin-top: -2rem;
    margin-left: 0;
    background-color: #ffffff26;
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 1rem;
    border-radius: 20px;
  }

  .showcase-image-1,
  .showcase-image-3 {
    width: 180px;
  }

  .showcase-image-2,
  .showcase-image-4 {
    width: 160px;
  }

  /* CTA */
  .cta-section-wrapper {
    padding: 3rem 1.5rem;
    min-height: 80vh;
  }

  .cta-title {
    font-size: 24px;
    line-height: 30px;
  }

  /* Footer */
  .footer-logo {
    width: 140px;
    height: 115px;
  }

  .footer-top-title,
  .form-title {
    font-size: 24px;
  }

  .footer-links {
    font-size: 16px;
  }

  .form-input {
    padding: 14px 20px;
    font-size: 11px;
  }

  .form-submit-btn {
    padding: 14px 20px;
    font-size: 11px;
  }
}

/* ============================================
     MOBILE MEDIUM (375px - 479px)
     ============================================ */
@media screen and (max-width: 479px) {
  .main-container {
    padding: 0 12px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 85vh;
  }

  .section-title {
    font-size: 24px;
  }

  .section-para {
    font-size: 10px;
  }

  .hero-welcome {
    font-size: 32px;
  }

  .hero-line {
    width: 120px;
  }

  .hero-logo {
    width: 90px;
    height: 75px;
  }

  .hero-logo-para {
    font-size: 10px;
  }

  /* Project Section */
  .project-section {
    padding: 3rem 0;
  }

  .project-title {
    font-size: 22px;
  }

  .project-para {
    font-size: 10px;
  }

  .projects-points-wrapper {
    gap: 1rem;
  }

  .projects-points-wrapper li {
    font-size: 8px;
  }

  /* Amenities */
  .amenities-title,
  .amenities-title-black {
    font-size: 22px;
  }

  .amenities-para {
    font-size: 10px;
  }

  .amenities-para br {
    display: none;
  }

  .amenities-card-row {
    gap: 20px;
  }

  .amenities-icons {
    width: 22px;
    height: 22px;
  }

  .amenities-card-title,
  .amenities-card-title-black {
    font-size: 8px;
  }

  /* Showcase */
  .showcase-section-wrapper {
    padding: 3rem 0.5rem;
  }

  .showcase-section-content {
    height: 450px;
  }

  .showcase-title {
    font-size: 30px;
    line-height: 36px;
  }

  .showcase-para {
    font-size: 10px;
    line-height: 16px;
  }

  .showcase-image-1,
  .showcase-image-3 {
    width: 150px;
  }

  .showcase-image-2,
  .showcase-image-4 {
    width: 130px;
  }

  .showcase-bg {
    height: 500px;
  }

  /* Masterplan */
  .masterplan-section-wrapper {
    gap: 2rem;
  }

  /* Location */
  .location-section {
    padding: 4rem 0;
  }

  .location-heading-wrapper {
    margin-bottom: 2rem;
  }

  /* CTA */
  .cta-section-wrapper {
    padding: 2.5rem 1rem;
    min-height: 70vh;
  }

  .cta-title {
    font-size: 20px;
    line-height: 26px;
    margin-left: 3rem;
    color: white;
    background-color: #0000006b;
    backdrop-filter: blur(3px);
    padding: 1rem;
    border-radius: 20px;
  }
  .cta-section{
    background-position: left;
  }

  /* Footer */
  .footer-wrapper {
    padding: 30px 0;
    gap: 40px;
  }

  .footer-top-content {
    gap: 40px;
  }

  .footer-top-title,
  .form-title {
    font-size: 20px;
  }

  .footer-top-para,
  .form-para {
    font-size: 10px;
  }

  .footer-top-para br,
  .form-para br {
    display: none;
  }

  .footer-logo {
    width: 120px;
    height: 95px;
  }

  .footer-address,
  .footer-address span {
    font-size: 10px;
  }

  .footer-links {
    font-size: 14px;
  }

  .form-input {
    padding: 12px 16px;
    font-size: 10px;
  }

  .form-submit-btn {
    width: 110px;
    padding: 12px 16px;
    font-size: 10px;
  }

  .social-media-icons {
    width: 20px;
    height: 20px;
  }

  .footer-bottom-para {
    font-size: 10px;
  }
}

/* ============================================
     MOBILE SMALL (320px - 374px)
     ============================================ */
@media screen and (max-width: 374px) {
  .main-container {
    padding: 0 10px;
  }

  /* Hero Section */
  .section-title {
    font-size: 20px;
  }

  .section-para {
    font-size: 9px;
  }

  .hero-welcome {
    font-size: 28px;
  }

  .hero-line {
    width: 100px;
  }

  .hero-logo {
    width: 75px;
    height: 60px;
  }

  .hero-logo-para {
    font-size: 9px;
  }

  /* Project Section */
  .project-title {
    font-size: 20px;
  }

  .project-para {
    font-size: 9px;
  }

  .projects-points-wrapper li {
    font-size: 7px;
  }

  .project-image {
    height: 250px;
  }

  .project-map {
    width: 150px;
    height: 100px;
  }

  /* Amenities */
  .amenities-wrapper {
    padding: 2.5rem 0;
    gap: 40px;
  }

  .amenities-title,
  .amenities-title-black {
    font-size: 20px;
  }

  .amenities-para {
    font-size: 9px;
  }

  .amenities-card-row {
    gap: 15px;
  }

  .amenities-icons {
    width: 20px;
    height: 20px;
  }

  .amenities-card-title,
  .amenities-card-title-black {
    font-size: 7px;
  }

  /* Showcase */
  .showcase-section-wrapper {
    padding: 2.5rem 0.5rem;
  }

  .showcase-section-content {
    height: 400px;
  }

  .showcase-title {
    font-size: 26px;
    line-height: 32px;
  }

  .showcase-para {
    font-size: 9px;
    line-height: 15px;
  }

  .showcase-image-1,
  .showcase-image-3 {
    width: 130px;
  }

  .showcase-image-2,
  .showcase-image-4 {
    width: 110px;
  }

  /* CTA */
  .cta-section-wrapper {
    padding: 2rem 0.8rem;
    min-height: 60vh;
  }

  .cta-title {
    font-size: 18px;
    line-height: 24px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 25px 0;
    gap: 30px;
  }

  .footer-top-title,
  .form-title {
    font-size: 18px;
  }

  .footer-logo {
    width: 100px;
    height: 80px;
  }

  .footer-links {
    font-size: 12px;
  }

  .form-input {
    padding: 10px 14px;
    width: 100%;
  }

  .form-submit-btn {
    width: 100px;
    padding: 10px 14px;
  }

  .social-media-icons {
    width: 18px;
    height: 18px;
  }

  .footer-social-media-icons-wrapper {
    gap: 20px;
  }
}

/* ============================================
     LANDSCAPE ORIENTATION
     ============================================ */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .hero-section {
    min-height: 150vh;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-welcome {
    font-size: 40px;
  }

  .showcase-section-content {
    height: auto;
    min-height: 600px;
  }

  .cta-section-wrapper {
    min-height: 100vh;
  }
}

/* ============================================
     PRINT STYLES
     ============================================ */
@media print {
  .hero-section-welcome-wrapper,
  .footer-form,
  .footer-social-media-icons-wrapper {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .hero-welcome,
  .project-title,
  .amenities-title {
    color: black;
  }
}

/* Location Section  */

.container-ctc {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.title-ctc {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 53px;
}

.main-content-ctc {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
}

.map-section-ctc {
  width: 780px;
  min-height: 450px;
}

.map-image-ctc {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.location-panel-ctc {
  width: 480px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.3); */
}

.time-group-ctc {
  border-bottom: 1px solid #e0e0e0;
}

.time-group-ctc:last-child {
  border-bottom: none;
}

.time-header-ctc {
  padding: 15px 20px;
  background: #000;
  color: white;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.first-group-ctc .time-header-ctc {
  cursor: default;
}

.arrow-ctc {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.time-group-ctc.active .arrow-ctc {
  transform: rotate(180deg);
}

.locations-list-ctc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
}

.time-group-ctc.active .locations-list-ctc {
  max-height: 250px;
  padding: 10px 0;
  background: #BDA69E;
}

.first-group-ctc.active .locations-list-ctc {
  max-height: 250px;
  padding: 10px 0;
}

.location-item-ctc {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

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

.location-name-ctc {
  color: #333;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
}

.location-time-ctc {
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .main-content-ctc {
    flex-direction: column;
    max-width: 100%;
  }

  .map-section-ctc {
    width: 100%;
  }

  .location-panel-ctc {
    width: 100%;
  }

  .title-ctc {
    font-size: 2rem;
  }
}


/* ============================================
   13-INCH MACBOOK OPTIMIZATION
   Screens: 1280px - 1440px width
   Common resolutions: 1280x800, 1440x900, 2560x1600 (Retina)
   ============================================ */

/* ============================================
   13" MacBook Air/Pro (1280px - 1440px)
   ============================================ */
   @media screen and (min-width: 1280px) and (max-width: 1440px) {
  
    /* Main Container */
    .main-container {
      max-width: 1200px;
      padding: 0 40px;
    }
  
    /* Navbar */
    .navbar-wrapper {
      width: 90%;
      height: 75px;
    }
  
    /* Hero Section */
    .hero-section {
      min-height: 100vh;
    }
  
    .section-title {
      font-size: 60px;
      line-height: 1.2;
    }
  
    .section-para {
      font-size: 13px;
    }
  
    .hero-content-line {
      width: 75%;
    }
  
    .hero-section-welcome-wrapper {
      margin-right: 3rem;
      gap: 20px;
    }
  
    .hero-line {
      width: 320px;
    }
  
    .hero-welcome {
      font-size: 62px;
    }
  
    .hero-logo {
      width: 150px;
      height: 122px;
    }
  
    .hero-logo-para {
      font-size: 13px;
    }
  
    /* Project Section */
    .project-section {
      /* padding: 8rem 0; */
    }
  
    .project-section-wrapper {
      /* margin-left: 120px; */
      gap: 2.5rem;
    }
  
    .project-title {
      font-size: 46px;
      max-width: 420px;
    }
  
    .project-description-wrapper {
      gap: 35px;
      margin-right: 6rem;
    }
  
    .project-para {
      font-size: 13px;
    }
  
    .projects-points-wrapper {
      max-width: 550px;
      gap: 1.8rem;
    }
  
    .projects-points-wrapper li {
      font-size: 11px;
    }
  
    /* .project-arrow {
      left: 140px;
      top: 48px;
      width: 280px;
      height: 190px;
    } */
  
    .project-images-wrapper {
      /* margin-right: -40px; */
    }
  
    .project-image {
      /* width: 1000px; */
      width: 100%;
      height: 450px;
    }
  
    .project-map {
      width: 350px;
      height: 195px;
    }
  
    /* Outdoor Amenities Section */
    .outdoor-amenities-section,
    .outdoor-amenities-section-white {
      padding: 0 20px;
    }
  
    .amenities-wrapper {
      padding: 5rem 0;
      gap: 90px;
    }
  
    .amenities-title,
    .amenities-title-black {
      font-size: 46px;
    }
  
    .amenities-para {
      font-size: 13px;
    }
  
    .amenities-card-wrappers {
      gap: 50px;
    }
  
    .amenities-card-row {
      gap: 50px;
    }
  
    .amenities-icons {
      width: 28px;
      height: 28px;
    }
  
    .amenities-card-title,
    .amenities-card-title-black {
      font-size: 13px;
      font-weight: 400;
    }
  
    .amenities-arrows {
      left: 44%;
      width: 100px;
      height: 95px;
    }
  
    .amenities-arrows-white {
      left: 49%;
      width: 100px;
      height: 95px;
    }
  
    /* Showcase Section */
    .showcase-section-wrapper {
      padding: 10rem 4rem;
    }
  
    .showcase-section-content {
      height: 750px;
    }
  
    .showcase-bg {
      height: 600px;
      margin-top: 12%;
      margin-left: -8%;
    }
  
    .showcase-image-1 {
      width: 300px;
      height: 365px;
    }
  
    .showcase-image-2 {
      width: 560px;
      height: 315px;
    }
  
    .showcase-image-3 {
      width: 305px;
      height: 315px;
    }
  
    .showcase-image-4 {
      width: 240px;
      height: 315px;
    }
  
    .showcase-content-wrapper {
      max-width: 560px;
      margin-top: 15rem;
      margin-left: 2rem;
    }
  
    .showcase-title {
      font-size: 76px;
      line-height: 80px;
      max-width: 380px;
    }
  
    .showcase-para {
      font-size: 13px;
      line-height: 20px;
      max-width: 380px;
    }
  
    /* Masterplan Section */
    .masterplan-section-wrapper {
      /* padding: 4rem 0; */
      gap: 2.5rem;
    }
  
    .masterplan-image {
      max-width: 95%;
      height: auto;
    }
  
    /* Location Section */
    .location-section {
      padding: 5rem 0;
    }
  
    .location-heading-wrapper {
      margin-bottom: 2.5rem;
    }
  
    .map-container {
      width: min(500px, 90vw);
      height: min(500px, 90vw);
    }
  
    .circle-1 {
      width: 88%;
      height: 88%;
    }
  
    .circle-2 {
      width: 68%;
      height: 68%;
    }
  
    .circle-3 {
      width: 48%;
      height: 48%;
    }
  
    .circle-4 {
      width: 28%;
      height: 28%;
    }
  
    .center-point {
      width: 100px;
      height: 100px;
    }
  
    .distance-label {
      font-size: 13px;
    }
  
    .landmark-icon {
      width: 38px;
      height: 38px;
    }
  
    .landmark-title {
      font-size: 10px;
      max-width: 85px;
    }
  
    /* Location Advantages Container */
    .container-ctc {
      padding: 35px 20px;
    }
  
    .title-ctc {
      font-size: 46px;
    }
  
    .main-content-ctc {
      gap: 25px;
      max-width: 950px;
    }
  
    .map-section-ctc {
      width: 640px;
      min-height: 420px;
    }
  
    .map-image-ctc {
      height: 460px;
    }
  
    .location-panel-ctc {
      width: 440px;
    }
  
    .time-header-ctc {
      padding: 14px 18px;
      font-size: 13px;
    }
  
    .location-item-ctc {
      padding: 11px 18px;
    }
  
    .location-name-ctc {
      font-size: 13px;
    }
  
    .location-time-ctc {
      font-size: 11.5px;
    }
  
    .time-group-ctc.active .locations-list-ctc {
      max-height: 240px;
    }
  
    /* CTA Section */
    .cta-section-wrapper {
      padding: 7rem 6rem;
      min-height: 110vh;
    }
  
    .cta-title {
      font-size: 28px;
      line-height: 45px;
      text-align: left;
    }
  
    .cta-2 {
      margin-right: 6rem;
    }
  
    /* Footer Section */
    .footer-wrapper {
      padding: 55px 0;
      gap: 75px;
    }
  
    .footer-top-content {
      gap: 85px;
    }
  
    .footer-top-content-wrapper {
      gap: 45px;
    }
  
    .footer-top-title {
      font-size: 36px;
    }
  
    .footer-top-para {
      font-size: 11.5px;
    }
  
    .footer-top-content-links-wrapper {
      gap: 4rem;
    }
  
    .footer-logo {
      height: 130px;
      width: 160px;
    }
  
    .footer-address {
      font-size: 11.5px;
    }
  
    .footer-links {
      font-size: 17px;
    }
  
    .form-title {
      font-size: 36px;
    }
  
    .form-para {
      font-size: 11.5px;
    }
  
    .form-input {
      width: 340px;
      padding: 15px 22px;
      font-size: 11.5px;
    }
  
    .form-submit-btn {
      width: 120px;
      padding: 15px 22px;
      font-size: 11.5px;
    }
  
    .social-media-icons {
      width: 22px;
      height: 22px;
    }
  
    .footer-social-media-icons-wrapper {
      gap: 26px;
    }
  
    .footer-bottom-content {
      gap: 32px;
    }
  
    .footer-bottom-para {
      font-size: 11.5px;
    }
  }
  
  /* ============================================
     Retina 13" MacBook Pro (2560x1600)
     High DPI optimizations
     ============================================ */
  @media screen and (min-width: 1280px) and (max-width: 1440px) 
         and (-webkit-min-device-pixel-ratio: 2),
         screen and (min-width: 1280px) and (max-width: 1440px) 
         and (min-resolution: 192dpi) {
    
    /* Sharper images for Retina */
    .hero-section,
    .project-image,
    .showcase-bg,
    .showcase-image-1,
    .showcase-image-2,
    .showcase-image-3,
    .showcase-image-4 {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
  
    /* Slightly adjust font smoothing for Retina */
    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  
    /* Thinner borders look better on Retina */
    .circle {
      border-width: 1.5px;
    }
  
    .footer-line,
    .hero-content-line {
      height: 0.5px;
    }
  }
  
  /* ============================================
     13" MacBook Landscape Mode
     ============================================ */
  @media screen and (min-width: 1280px) and (max-width: 1440px) 
         and (orientation: landscape) {
    
    .hero-section {
      min-height: 100vh;
    }
  
    .showcase-section-wrapper {
      padding: 9rem 3.5rem;
    }
  
    .cta-section-wrapper {
      min-height: 100vh;
    }
  }
  
  /* ============================================
     Browser-specific adjustments for MacBook
     ============================================ */
  
  /* Safari on MacBook */
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    @supports (-webkit-backdrop-filter: blur(10px)) {
      .navbar-wrapper {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
      }
    }
  }
  
  /* Chrome/Edge on MacBook */
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    @supports (backdrop-filter: blur(10px)) {
      .navbar-wrapper {
        backdrop-filter: blur(10px);
      }
    }
  }
  
  /* ============================================
     Performance optimizations for MacBook
     ============================================ */
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    
    /* Optimize animations */
    .amenities-arrows,
    .amenities-arrows-white,
    .project-arrow {
      will-change: transform;
    }
  
    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }
  
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
  }




  .footer-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.81rem;
    flex: 1;
    max-width: 320px;
  }
  .footer-form-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
  }
  .footer-form-title {
    color: #fff;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem; 
    letter-spacing: 0.15rem;
    text-transform: uppercase;
  }
  .footer-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Inter;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1rem; 
  }
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 0.37rem;
  }
  .footer-form-input {
    display: flex;
    height: 2rem;
    padding: 1rem 1.5rem;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    background-color: transparent;
    color: white;
    width: 100%;
    box-sizing: border-box;
    }
  .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: 2.5rem;
    border: none;
    cursor: pointer;
  }
  .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;
  }
  
  
/* ===== TABLET MEDIA QUERIES (768px - 1024px) ===== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    
  /* Footer */
  .footer-wrapper {
    margin: 3rem 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    width: 10rem;
    height: 3.5rem;
}

.footer-logo-wrapper {
    max-width: 250px;
}

.footer-form-wrapper {
    max-width: 280px;
}

.footer-address-title,
.footer-links-title,
.footer-form-title {
    font-size: 1.1rem;
}

.footer-social-media-wrapper {
    padding-top: 2rem;
}
}

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

.footer-logo-wrapper {
    align-items: center;
    max-width: 100%;
}

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

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

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

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

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

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

.footer-social-media-wrapper {
    padding-top: 0;
    justify-content: center;
}

.footer-form-wrapper {
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
}

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

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

.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;
}
}


.phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
}

.country-code-select {
  /* padding: 0.75rem 0.5rem; */
  padding: 0.5rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  /* font-size: 1rem; */
  /* border-radius: 6px; */
  min-width: 80px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 12px;
}

.country-code-select option {
  color: #000;
}

/* Responsive: Tablet & below */
@media (max-width: 768px) {
  .phone-input-wrapper {
      flex-direction: column;
  }

  .country-code-select {
      width: 100%;
  }
}



.name-input-wrapper{
  display: flex;
  gap: 1rem;
}



.project-bg-1{
  position: absolute;
  width: 384px;
  height: 417px;x`
  top: 0;
  left: -12%;
}
.project-bg-2{
  position: absolute;
  width: 808px;
  height: 810px;
  top: 300px;
  left: 25%;
  transform: rotate(45deg);
}
.footer-bg{
  position: absolute;
  width: 408px;
  height: 410px;
  bottom: 0;
  right: 0;
}


.floor-plan-section {
  max-width: 1400px;
  margin: 0 auto;
}

/* .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
} */

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.balcony-btn {
  padding: 12px 20px;
  font-size: 12px;
  /* font-weight: 600; */
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  /* border: 2px solid #3498db; */
  background: white;
  color: #000;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.balcony-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.balcony-btn.active {
  background: #BDA69E;
  color: white;
}

.slider-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: white;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: white;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #BDA69E;
  color: white;
  border: none;
  padding: 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.arrow:hover {
  background: #d4b8af;
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

.dots {
  text-align: center;
  padding: 25px 0;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bdc3c7;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot:hover {
  background: #95a5a6;
}

.dot.active {
  background: #3498db;
  transform: scale(1.3);
  border-color: #2980b9;
}

.slide-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
}

@media (max-width: 1024px) {
  .slide {
      height: 500px;
  }

  /* .section-title {
      font-size: 36px;
  } */
}

@media (max-width: 768px) {
  /* .section-title {
      font-size: 28px;
      margin-bottom: 30px;
  } */

  .button-container {
      gap: 15px;
      margin-bottom: 40px;
  }

  .balcony-btn {
      padding: 12px 30px;
      font-size: 14px;
  }

  .slider-container {
      width: 95%;
  }

  .slide {
      height: 400px;
  }

  .arrow {
      width: 45px;
      height: 45px;
      padding: 15px;
      font-size: 18px;
  }

  .arrow.left {
      left: 10px;
  }

  .arrow.right {
      right: 10px;
  }
}

@media (max-width: 480px) {
  body {
      padding: 20px 10px;
  }

  /* .section-title {
      font-size: 24px;
      margin-bottom: 25px;
  } */

  .balcony-btn {
      padding: 10px 20px;
      font-size: 12px;
  }

  .slide {
      height: 300px;
  }

  .arrow {
      width: 40px;
      height: 40px;
      padding: 10px;
      font-size: 16px;
  }

  .dot {
      width: 10px;
      height: 10px;
      margin: 0 5px;
  }

  .slide-counter {
      padding: 8px 15px;
      font-size: 12px;
  }
}

.floor-plan-title-wrapper{
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}

.floorplan-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.floorplan-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.floorplan-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.floorplan-balcony-button {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #3498db;
  background: white;
  color: #3498db;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.floorplan-balcony-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.floorplan-balcony-button.floorplan-active {
  background: #3498db;
  color: white;
}

.floorplan-slider-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.floorplan-slider-main {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: white;
}

.floorplan-slides-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.floorplan-slide-item {
  min-width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.floorplan-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(52, 152, 219, 0.9);
  color: white;
  border: none;
  padding: 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.floorplan-nav-arrow:hover {
  background: rgba(41, 128, 185, 1);
  transform: translateY(-50%) scale(1.1);
}

.floorplan-nav-arrow.floorplan-arrow-left {
  left: 20px;
}

.floorplan-nav-arrow.floorplan-arrow-right {
  right: 20px;
}

.floorplan-dots-wrapper {
  text-align: center;
  padding: 25px 0;
}

.floorplan-dot-indicator {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #bdc3c7;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.floorplan-dot-indicator:hover {
  background: #95a5a6;
}

.floorplan-dot-indicator.floorplan-active {
  background: #3498db;
  transform: scale(1.3);
  border-color: #2980b9;
}

.floorplan-counter-display {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
}

@media (max-width: 1024px) {
  .slide {
      height: 500px;
  }

  /* .section-title {
      font-size: 36px;
  } */
}

@media (max-width: 768px) {
  /* .section-title {
      font-size: 28px;
      margin-bottom: 30px;
  } */

  .button-container {
      gap: 15px;
      margin-bottom: 40px;
  }

  .balcony-btn {
      padding: 12px 30px;
      font-size: 14px;
  }

  .slider-container {
      width: 95%;
  }

  .slide {
      height: 400px;
  }

  .arrow {
      width: 45px;
      height: 45px;
      padding: 15px;
      font-size: 18px;
  }

  .arrow.left {
      left: 10px;
  }

  .arrow.right {
      right: 10px;
  }
}

@media (max-width: 480px) {
  body {
      padding: 20px 10px;
  }

  /* .section-title {
      font-size: 24px;
      margin-bottom: 25px;
  } */

  .balcony-btn {
      padding: 10px 20px;
      font-size: 12px;
  }

  .slide {
      height: 150px;
  }

  .arrow {
      width: 40px;
      height: 40px;
      padding: 10px;
      font-size: 16px;
  }

  .dot {
      width: 10px;
      height: 10px;
      margin: 0 5px;
  }

  .slide-counter {
      padding: 8px 15px;
      font-size: 12px;
  }
}






.spec-slider-section {
  /* background: linear-gradient(135deg, #e8f1f5 0%, #f5f9fb 100%); */
  /* padding: 60px 20px; */
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: "Inter", sans-serif;
}

.spec-slider-title {
  text-align: center;
  color: #2c5f7f;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.spec-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px;
}

.spec-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.spec-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.spec-slider-card {
  min-width: calc(5% - 22.5px);
  background: white;
  border-radius: 20px;
  padding: 15px 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.spec-slider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.spec-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #2c5f7f;
  stroke-width: 1.5;
  fill: none;
}

.spec-card-title {
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f1f5;
}

.spec-card-list {
  list-style: none;
}

.spec-card-list li {
  color: #000000b7;
  font-size: 0.45rem;
  line-height: 1.8;
  padding: 4px 0;
  padding-left: 25px;
  position: relative;
}

.spec-card-list li::before {
  content: "■";
  color: #000;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 0;
}

.spec-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.spec-slider-btn:hover {
  background: #2c5f7f;
  transform: translateY(-50%) scale(1.1);
}

.spec-slider-btn:hover svg {
  stroke: white;
}

.spec-slider-btn svg {
  width: 24px;
  height: 24px;
  stroke: #2c5f7f;
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.spec-slider-btn-prev {
  left: 0;
}

.spec-slider-btn-next {
  right: 0;
}

.spec-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.spec-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c5d9e4;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.spec-slider-dot.spec-active {
  background: #2c5f7f;
  width: 40px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .spec-slider-card {
      min-width: calc(33.333% - 20px);
  }
  
  .spec-slider-container {
      padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .spec-slider-card {
      min-width: calc(50% - 15px);
  }
  
  .spec-slider-container {
      padding: 0 45px;
  }

  .spec-slider-title {
      font-size: 2rem;
      margin-bottom: 40px;
  }

  .spec-slider-btn {
      width: 40px;
      height: 40px;
  }

  .spec-slider-btn svg {
      width: 20px;
      height: 20px;
  }
}

@media (max-width: 480px) {
  .spec-slider-card {
      min-width: calc(100% - 0px);
  }

  .spec-slider-track {
      gap: 20px;
  }

  .spec-slider-container {
      padding: 0 40px;
  }

  .spec-slider-title {
      font-size: 1.6rem;
  }

  .spec-card-title {
      font-size: 1.2rem;
  }

  .spec-slider-section {
      padding: 40px 15px;
  }
}

.spec-main-icona{
  height: 80px;
  width: 80px;
}





/* new code */































.facilities-section {
  /* padding: 60px 20px; */
  /* max-width: 1400px; */
  width: 100%;
  margin: 0 auto;
}

.container {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

.image-side {
  width: 100%;
  height: 500px;
  /* background: linear-gradient(135deg, #1a2942 0%, #0f1a2e 100%); */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  font-size: 18px;
  background-image: url(./Imges/map.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.content-side{
  width: 80%;
}

.content-side h1 {
  font-size: 32px;
  color: #BDA69E;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  /* gap: 12px; */
  /* padding: 8px 0; */
}

.facility-number {
  color: #BDA69E;
  font-size: 10px;
  min-width: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.facility-name {
  color: #a0aec0;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  .facilities-section {
      padding: 50px 20px;
  }

  .container {
      gap: 40px;
  }

  .image-side {
      height: 400px;
  }

  .content-side h1 {
      font-size: 36px;
      margin-bottom: 30px;
  }

  .facilities-grid {
      gap: 10px 30px;
  }

  .facility-name {
      font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .facilities-section {
      padding: 40px 15px;
  }

  .container {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .image-side {
      height: 300px;
      order: -1;
  }

  .content-side h1 {
      font-size: 28px;
      letter-spacing: 2px;
      margin-bottom: 25px;
  }

  .facilities-grid {
      grid-template-columns: 1fr;
      gap: 8px;
  }

  .facility-item {
      /* padding: 6px 0; */
  }

  .facility-number {
      font-size: 13px;
  }

  .facility-name {
      font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .content-side h1 {
      font-size: 24px;
      letter-spacing: 1.5px;
  }

  .image-side {
      height: 250px;
  }

  .facility-number,
  .facility-name {
      font-size: 12px;
  }
}












.main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.info-panel {
  color: #d4c5a9;
}

.title-block {
  margin-bottom: 50px;
}

.title-block h3 {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.8;
  font-family: "Inter", sans-serif;
}

.title-block h1 {
  font-size: 38px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.3;
}

.title-block p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 300;
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 0px;
}

.property-highlight {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 45px;
  height: 45px;
  stroke: #d4c5a9;
  fill: none;
  stroke-width: 1.5;
}

.highlight-details h4 {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.highlight-details p {
  font-size: 10px;
  opacity: 0.8;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

.visual-showcase {
  position: relative;
  /* min-height: 600px; */
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 197, 169, 0.2);
}

.visual-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-fallback {
  /* color: rgba(212, 197, 169, 0.3); */
  /* font-size: 18px; */
  /* text-align: center; */
  /* padding: 40px; */
  height: 50vh;
  width: 100%;
  background-image: url(./Icons/projects-image-big.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-wrapper {
      gap: 40px;
  }

  .title-block h1 {
      font-size: 36px;
  }

  .visual-showcase {
      min-height: 500px;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
      grid-template-columns: 1fr;
      gap: 50px;
  }

  .title-block h1 {
      font-size: 32px;
  }

  .title-block h3 {
      font-size: 12px;
  }

  .amenities-layout {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .property-highlight {
      gap: 20px;
  }

  .icon-wrapper {
      width: 50px;
      height: 50px;
  }

  .icon-wrapper svg {
      width: 38px;
      height: 38px;
  }

  .highlight-details h4 {
      font-size: 16px;
  }

  .highlight-details p {
      font-size: 14px;
  }

  .visual-showcase {
      min-height: 400px;
      order: -1;
  }
}

@media (max-width: 480px) {
  body {
      padding: 30px 15px;
  }

  .title-block h1 {
      font-size: 26px;
      letter-spacing: 2px;
  }

  .title-block p {
      font-size: 15px;
  }

  .amenities-layout {
      gap: 30px;
  }

  .icon-wrapper {
      width: 45px;
      height: 45px;
  }

  .icon-wrapper svg {
      width: 35px;
      height: 35px;
  }

  .visual-showcase {
      min-height: 300px;
  }
}


.location-content-image{
  width: 450px;
  height: 450px;
}













/* ============================================
   MISSING MOBILE RESPONSIVE SECTIONS
   Mobile screens: 320px - 768px
   ============================================ */

/* ============================================
   PROJECT SECTION - Mobile Responsive
   ============================================ */
   @media screen and (max-width: 768px) {
    .project-section {
      padding: 3rem 0;
    }
  
    .project-bg-1 {
      width: 200px;
      height: 220px;
      left: -20%;
    }
  
    .project-bg-2 {
      width: 400px;
      height: 400px;
      top: 150px;
      left: 10%;
    }
  
    /* New layout for main wrapper */
    .main-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 0 15px;
    }
  
    .info-panel {
      order: 2;
    }
  
    .visual-showcase {
      order: 1;
      min-height: 300px;
      display: none;
    }
  
    .visual-fallback {
      height: 35vh;
    }
  
    .title-block h3 {
      font-size: 10px;
      letter-spacing: 2px;
      text-align: center;
    }
  
    .title-block h1 {
      font-size: 24px;
      letter-spacing: 1.5px;
    }
  
    .title-block p {
      font-size: 11px;
    }
  
    .title-block p br {
      display: none;
    }
  
    .amenities-layout {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  
    .property-highlight {
      gap: 15px;
    }
  
    .icon-wrapper {
      width: 25px;
      height: 25px;
    }
  
    .icon-wrapper img {
      width: 100%;
      height: 100%;
    }
  
    .highlight-details h4 {
      font-size: 11px;
    }
  
    .highlight-details p {
      font-size: 9px;
    }
    .location-content-image{
      width: 220px;
      height: 220px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .project-bg-1,
    .project-bg-2 {
      display: none;
    }
  
    .main-wrapper {
      gap: 2rem;
    }
  
    .title-block h1 {
      font-size: 20px;
    }
  
    .visual-fallback {
      height: 30vh;
    }
  
    .amenities-layout {
      gap: 15px;
    }
  
    .property-highlight {
      gap: 12px;
    }
  }
  
  /* ============================================
     MASTERPLAN SECTION - Mobile Responsive
     ============================================ */
  @media screen and (max-width: 768px) {
    .masterplan-section {
      padding: 3rem 0;
    }
  
    .masterplan-section-wrapper {
      gap: 1rem;
      padding: 1rem 0;
    }
  
    .masterplan-title-wrapper {
      padding: 0 15px;
    }
  
    /* Facilities Section inside Masterplan */
    .facilities-section {
      padding: 40px 15px;
    }
  
    .container {
      flex-direction: column;
      gap: 30px;
    }
  
    .image-side {
      width: 100%;
      height: 350px;
      order: 1;
    }
  
    .content-side {
      width: 100%;
      order: 2;
    }
  
    .content-side h1 {
      font-size: 24px;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }
  
    .facilities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 20px;
    }
  
    .facility-number {
      font-size: 9px;
      min-width: 18px;
    }
  
    .facility-name {
      font-size: 9px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .facilities-section {
      padding: 0px;
    }
  
    .image-side {
      height: 280px;
    }
  
    .content-side h1 {
      font-size: 20px;
      letter-spacing: 1.5px;
    }
  
    .facility-number,
    .facility-name {
      font-size: 8px;
    }
  
    .facilities-grid {
      gap: 8px 15px;
    }
  }
  
  /* ============================================
     FLOOR PLAN SECTION - Mobile Responsive
     ============================================ */
  @media screen and (max-width: 768px) {
    .floor-plan-section {
      padding: 3rem 0;
    }
  
    .floor-plan-title-wrapper {
      margin: 2rem 0;
      padding: 0 15px;
    }
  
    .button-container {
      gap: 12px;
      margin-bottom: 30px;
      padding: 0 15px;
    }
  
    .balcony-btn {
      padding: 10px 20px;
      font-size: 11px;
    }
  
    .slider-container {
      width: 100%;
      padding: 0 10px;
    }
  
    .slide {
      height: 350px;
    }
  
    .arrow {
      width: 40px;
      height: 40px;
      padding: 12px;
      font-size: 18px;
    }
  
    .arrow.left {
      left: 15px;
    }
  
    .arrow.right {
      right: 15px;
    }
  
    .slide-counter {
      bottom: 15px;
      right: 15px;
      padding: 8px 15px;
      font-size: 12px;
    }
  
    .dots {
      padding: 20px 0;
    }
  
    .dot {
      width: 10px;
      height: 10px;
      margin: 0 6px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .floor-plan-section {
      padding: 2rem 0;
    }
  
    .floor-plan-title-wrapper {
      margin: 1.5rem 0;
    }
  
    .button-container {
      gap: 10px;
      margin-bottom: 25px;
    }
  
    .balcony-btn {
      padding: 8px 16px;
      font-size: 10px;
    }
  
    .slide {
      height: 150px;
    }
  
    .arrow {
      width: 35px;
      height: 35px;
      padding: 10px;
      font-size: 16px;
    }
  
    .arrow.left {
      left: 10px;
    }
  
    .arrow.right {
      right: 10px;
    }
  
    .slide-counter {
      padding: 6px 12px;
      font-size: 11px;
    }
  
    .dot {
      width: 8px;
      height: 8px;
      margin: 0 4px;
    }
  }
  
  /* ============================================
     SPECIFICATIONS SECTION - Mobile Responsive
     ============================================ */
  @media screen and (max-width: 768px) {
    .spec-main-container {
      /* padding: 3rem 0; */
    }
  
    .spec-slider-section {
      padding: 40px 15px;
    }
  
    .spec-slider-title {
      font-size: 1.8rem;
      margin-bottom: 35px;
    }
  
    .spec-slider-container {
      padding: 0 45px;
    }
  
    .spec-slider-card {
      min-width: calc(100% - 0px);
      padding: 20px 15px;
    }
  
    .spec-slider-track {
      gap: 20px;
    }
  
    .spec-card-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }
  
    .spec-main-icona {
      height: 60px;
      width: 60px;
    }
  
    .spec-card-title {
      font-size: 1.1rem;
      margin-bottom: 15px;
      padding-bottom: 12px;
    }
  
    .spec-card-list li {
      font-size: 0.75rem;
      padding: 5px 0;
      padding-left: 20px;
    }
  
    .spec-card-list li::before {
      font-size: 0.7rem;
    }
  
    .spec-slider-btn {
      width: 45px;
      height: 45px;
    }
  
    .spec-slider-btn svg {
      width: 20px;
      height: 20px;
    }
  
    .spec-slider-dots {
      gap: 10px;
      margin-top: 30px;
    }
  
    .spec-slider-dot {
      width: 10px;
      height: 10px;
    }
  
    .spec-slider-dot.spec-active {
      width: 30px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .spec-slider-section {
      padding: 30px 10px;
    }
  
    .spec-slider-title {
      font-size: 1.4rem;
      margin-bottom: 30px;
    }
  
    .spec-slider-container {
      padding: 0 40px;
    }
  
    .spec-slider-card {
      padding: 18px 12px;
    }
  
    .spec-card-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }
  
    .spec-main-icona {
      height: 50px;
      width: 50px;
    }
  
    .spec-card-title {
      font-size: 0.95rem;
      margin-bottom: 12px;
      padding-bottom: 10px;
    }
  
    .spec-card-list li {
      font-size: 0.65rem;
      padding: 4px 0;
      padding-left: 18px;
    }
  
    .spec-slider-btn {
      width: 40px;
      height: 40px;
    }
  
    .spec-slider-btn svg {
      width: 18px;
      height: 18px;
    }
  
    .spec-slider-dots {
      gap: 8px;
      margin-top: 25px;
    }
  
    .spec-slider-dot {
      width: 8px;
      height: 8px;
    }
  
    .spec-slider-dot.spec-active {
      width: 25px;
    }
  }
  
  /* ============================================
     LOCATION ADVANTAGES CONTAINER - Mobile Responsive
     ============================================ */
  @media screen and (max-width: 768px) {
    .container-ctc {
      padding: 30px 15px;
    }
  
    .header-ctc {
      margin-bottom: 30px;
    }
  
    .title-ctc {
      font-size: 28px;
      letter-spacing: 2px;
    }
  
    .main-content-ctc {
      flex-direction: column;
      gap: 30px;
    }
  
    .map-section-ctc {
      width: 100%;
      min-height: 350px;
    }
  
    .map-image-ctc {
      height: 350px;
    }
  
    .location-panel-ctc {
      width: 100%;
    }
  
    .time-header-ctc {
      padding: 12px 16px;
      font-size: 12px;
    }
  
    .location-item-ctc {
      padding: 10px 16px;
    }
  
    .location-name-ctc {
      font-size: 11px;
    }
  
    .location-time-ctc {
      font-size: 10px;
    }
  
    .time-group-ctc.active .locations-list-ctc {
      max-height: 220px;
    }
  
    .arrow-ctc {
      font-size: 11px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .container-ctc {
      padding: 25px 10px;
    }
  
    .title-ctc {
      font-size: 22px;
      letter-spacing: 1.5px;
    }
  
    .main-content-ctc {
      gap: 25px;
    }
  
    .map-section-ctc {
      min-height: 300px;
    }
  
    .map-image-ctc {
      height: 300px;
    }
  
    .time-header-ctc {
      padding: 10px 14px;
      font-size: 11px;
    }
  
    .location-item-ctc {
      padding: 9px 14px;
    }
  
    .location-name-ctc {
      font-size: 10px;
    }
  
    .location-time-ctc {
      font-size: 9px;
    }
  
    .time-group-ctc.active .locations-list-ctc {
      max-height: 200px;
      padding: 8px 0;
    }
  }
  
  /* ============================================
     FOOTER BACKGROUND - Mobile Responsive
     ============================================ */
  @media screen and (max-width: 768px) {
    .footer-bg {
      width: 250px;
      height: 250px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer-bg {
      width: 200px;
      height: 200px;
    }
  }
  
  /* ============================================
     FOOTER FORM - Additional Mobile Fixes
     ============================================ */
  @media screen and (max-width: 768px) {
    .footer-form-wrapper {
      gap: 1.5rem;
      max-width: 100%;
    }
  
    .name-input-wrapper {
      flex-direction: column;
      gap: 0.6rem;
    }
  
    .phone-input-wrapper {
      flex-direction: row;
      gap: 0.5rem;
    }
  
    .country-code-select {
      min-width: 70px;
      padding: 0.4rem;
      font-size: 11px;
    }
  
    .phone-number-input {
      flex: 1;
    }
  
    .footer-form-input {
      height: 2.2rem;
      padding: 0.8rem 1rem;
      font-size: 11px;
    }
  
    .footer-form-button {
      width: 100%;
      height: 2.5rem;
      font-size: 11px;
      margin-top: 0.8rem;
    }
  
    .footer-form-title {
      font-size: 1.1rem;
      line-height: 1.6rem;
      letter-spacing: 0.1rem;
    }
  
    .footer-form-subtitle {
      font-size: 0.65rem;
      line-height: 0.9rem;
    }
  
    .footer-form-note {
      font-size: 11px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .name-input-wrapper {
      gap: 0.5rem;
    }
  
    .phone-input-wrapper {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .country-code-select {
      width: 100%;
      min-width: 100%;
    }
  
    .footer-form-input {
      height: 2rem;
      padding: 0.7rem 0.9rem;
      font-size: 10px;
    }
  
    .footer-form-button {
      height: 2.3rem;
      font-size: 10px;
    }
  
    .footer-form-title {
      font-size: 1rem;
      line-height: 1.4rem;
    }
  
    .footer-form-subtitle {
      font-size: 0.6rem;
    }
  }
  
  /* ============================================
     UTILITY CLASSES - Hide Elements on Mobile
     ============================================ */
  @media screen and (max-width: 768px) {
    /* Hide decorative elements on mobile */
    .project-arrow {
      display: none;
    }
  
    /* Ensure proper text wrapping */
    .section-title br,
    .project-title br,
    .amenities-para br {
      display: none;
    }
  }
  
  /* ============================================
     LANDSCAPE MODE FIXES
     ============================================ */
  @media screen and (max-height: 500px) and (orientation: landscape) {
    .slide {
      height: 280px;
    }
  
    .showcase-section-content {
      height: auto;
      min-height: 400px;
    }
  
    .visual-fallback {
      height: 40vh;
    }
  }












  /* ============================================
   SPECIFICATION SLIDER - MOBILE FIX
   Override existing styles with !important
   ============================================ */

/* ============================================
   TABLET - 768px to 1024px
   ============================================ */
@media screen and (max-width: 1024px) {
  .spec-slider-container {
    padding: 0 50px !important;
  }

  .spec-slider-card {
    min-width: calc(50% - 15px) !important;
    padding: 20px 15px !important;
  }

  .spec-card-title {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  .spec-card-list li {
    font-size: 0.7rem !important;
    line-height: 1.6 !important;
    padding: 5px 0 !important;
    padding-left: 20px !important;
  }

  .spec-card-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px !important;
  }

  .spec-main-icona {
    height: 60px !important;
    width: 60px !important;
  }
}

/* ============================================
   MOBILE LARGE - 481px to 768px
   ============================================ */
@media screen and (max-width: 768px) {
  .spec-slider-section {
    padding: 40px 10px !important;
  }

  .spec-slider-container {
    padding: 0 45px !important;
    max-width: 100% !important;
  }

  .spec-slider-card {
    min-width: calc(100% - 0px) !important;
    padding: 25px 20px !important;
    border-radius: 15px !important;
  }

  .spec-slider-track {
    gap: 20px !important;
  }

  .spec-card-icon {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 20px !important;
  }

  .spec-main-icona {
    height: 70px !important;
    width: 70px !important;
  }

  .spec-card-title {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #e8f1f5 !important;
  }

  .spec-card-list {
    padding: 0 !important;
    margin: 0 !important;
  }

  .spec-card-list li {
    font-size: 0.8rem !important;
    line-height: 1.7 !important;
    padding: 6px 0 !important;
    padding-left: 22px !important;
    color: #000000b7 !important;
  }

  .spec-card-list li::before {
    content: "■" !important;
    font-size: 0.7rem !important;
    left: 0 !important;
    top: 6px !important;
  }

  .spec-slider-btn {
    width: 45px !important;
    height: 45px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  }

  .spec-slider-btn svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.5 !important;
  }

  .spec-slider-btn-prev {
    left: 5px !important;
  }

  .spec-slider-btn-next {
    right: 5px !important;
  }

  .spec-slider-dots {
    gap: 10px !important;
    margin-top: 35px !important;
  }

  .spec-slider-dot {
    width: 10px !important;
    height: 10px !important;
  }

  .spec-slider-dot.spec-active {
    width: 35px !important;
    border-radius: 5px !important;
  }
}

/* ============================================
   MOBILE MEDIUM - 376px to 480px
   ============================================ */
@media screen and (max-width: 480px) {
  .spec-slider-section {
    padding: 35px 8px !important;
  }

  .spec-slider-container {
    padding: 0 42px !important;
  }

  .spec-slider-card {
    min-width: 100% !important;
    padding: 22px 18px !important;
    border-radius: 12px !important;
    height: 50vh !important;
    width: 50vw !important;
  }

  .spec-slider-track {
    gap: 18px !important;
  }

  .spec-card-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 18px !important;
  }

  .spec-main-icona {
    height: 60px !important;
    width: 60px !important;
    object-fit: contain !important;
  }

  .spec-card-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    line-height: 1.3 !important;
  }

  .spec-card-list li {
    font-size: 0.72rem !important;
    line-height: 1.65 !important;
    padding: 5px 0 !important;
    padding-left: 20px !important;
  }

  .spec-card-list li::before {
    font-size: 0.65rem !important;
    top: 5px !important;
  }

  .spec-slider-btn {
    width: 42px !important;
    height: 42px !important;
  }

  .spec-slider-btn svg {
    width: 20px !important;
    height: 20px !important;
  }

  .spec-slider-btn-prev {
    left: 3px !important;
  }

  .spec-slider-btn-next {
    right: 3px !important;
  }

  .spec-slider-dots {
    gap: 8px !important;
    margin-top: 30px !important;
  }

  .spec-slider-dot {
    width: 9px !important;
    height: 9px !important;
  }

  .spec-slider-dot.spec-active {
    width: 30px !important;
  }
}

/* ============================================
   MOBILE SMALL - 320px to 375px
   ============================================ */
@media screen and (max-width: 375px) {
  .spec-slider-section {
    padding: 30px 5px !important;
  }

  .spec-slider-container {
    padding: 0 40px !important;
  }

  .spec-slider-card {
    padding: 20px 15px !important;
    border-radius: 10px !important;
  }

  .spec-slider-track {
    gap: 15px !important;
  }

  .spec-card-icon {
    width: 55px !important;
    height: 55px !important;
    margin: 0 auto 15px !important;
  }

  .spec-main-icona {
    height: 55px !important;
    width: 55px !important;
  }

  .spec-card-title {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }

  .spec-card-list li {
    font-size: 0.68rem !important;
    line-height: 1.6 !important;
    padding: 4px 0 !important;
    padding-left: 18px !important;
  }

  .spec-card-list li::before {
    font-size: 0.6rem !important;
    top: 4px !important;
  }

  .spec-slider-btn {
    width: 38px !important;
    height: 38px !important;
  }

  .spec-slider-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .spec-slider-btn-prev {
    left: 2px !important;
  }

  .spec-slider-btn-next {
    right: 2px !important;
  }

  .spec-slider-dots {
    gap: 7px !important;
    margin-top: 25px !important;
  }

  .spec-slider-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .spec-slider-dot.spec-active {
    width: 25px !important;
  }
}

/* ============================================
   LANDSCAPE MODE FIX
   ============================================ */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .spec-slider-card {
    padding: 18px 15px !important;
  }

  .spec-card-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 12px !important;
  }

  .spec-main-icona {
    height: 50px !important;
    width: 50px !important;
  }

  .spec-card-title {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }

  .spec-card-list li {
    font-size: 0.65rem !important;
    line-height: 1.5 !important;
    padding: 3px 0 !important;
  }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .spec-slider-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .spec-slider-btn:active {
    transform: translateY(-50%) scale(0.95) !important;
  }

  .spec-slider-card:active {
    transform: scale(0.98) !important;
  }
}

















