/* ============================================
   FONTS & BASE
============================================ */
.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
}
body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}
@font-face {
  font-family: "Times New Roman", Times, serif;
  src: url(../fonts/Times\ New\ Roman\ MT\ Condensed\ Regular.otf);
}
@font-face {
  font-family: "canva";
  src: url(../fonts/CanvaSans-Regular.otf);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NAVBAR
============================================ */
.custom-navbar {
  background: #ffffff;
  padding: 12px 10px;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.logo {
  height: 70px;
  margin-right: 8px;
}
.brand-text {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.navbar {
  min-height: 70px;
}
.navbar-nav {
  align-items: center;
}
.menu .nav-item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.menu .nav-link {
  padding: 0 16px !important;
  font-size: 18px;
  color: #111;
  line-height: 1;
}
.menu .nav-link:hover,
.menu .nav-link.active {
  color: #000;
}
.custom-arrow {
  display: flex;
  align-items: center;
}
.custom-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  margin-left: 6px;
  color: #c62828;
  transition: transform 0.3s ease;
}
.dropdown-toggle::after {
  border: none !important;
}
.custom-arrow.active::after {
  transform: rotate(180deg);
}
.whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.whatsapp i {
  color: #25d366;
  font-size: 20px;
}
.whatsapp .text small {
  display: block;
  color: #666;
  line-height: 1;
}
.whatsapp .text span {
  font-weight: 600;
  color: #000;
}
.social-icons a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #c62828;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 6px;
  text-decoration: none;
}
.social-icons a:hover {
  opacity: 0.85;
}

/* ============================================
   MOBILE NAVBAR
============================================ */
@media (max-width: 991px) {
  .navbar-toggler {
    border: none;
    outline: none;
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }
  .mobile-nav {
    background: #ffffff;
    padding: 16px 0;
    margin-top: 12px;
    border-top: 1px solid #eee;
  }
  .menu {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
  }
  .menu .nav-item {
    width: 100%;
  }
  .menu .nav-link {
    padding: 14px 20px !important;
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .custom-arrow::after {
    margin-left: auto;
    font-size: 20px;
  }
  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }
  .dropdown-menu .dropdown-item {
    padding: 10px 0;
    font-size: 14px;
  }
  .right-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 0;
    width: 100%;
  }
  .whatsapp {
    width: 100%;
  }
  .whatsapp .text span {
    font-size: 14px;
  }
  .social-icons {
    display: flex;
    gap: 10px;
  }
  .social-icons a {
    margin-left: 0;
  }
  .logo {
    height: 50px;
  }
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("../images/HOME PAGE.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.17), rgba(0, 0, 0, 0.6));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin-top: -8%;
}
.hero-content h1 {
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(to right, #a77c60, #ffbb7bf3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
}

.hero-content h1 span {
  display: block;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
}
.hero-content p {
  margin-top: 10px;
  font-size: clamp(16px, 2.5vw, 30px);
  color: #eaeaea;
  font-family: "Times New Roman", Times, serif;
}

/* ============================================
   HERO SEARCH BAR
============================================ */
.hero-search-wrapper {
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-search-bar {
  padding: 4px;
  display: flex;
  align-items: center;
  background: rgba(245, 238, 230, 0.95);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  min-height: 62px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid #d8c9b7;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  background: #fff;
}
.search-field span {
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-field i {
  font-size: 12px;
  color: #666;
}
.search-field:last-of-type {
  border-right: none;
}
.search-btn {
  background: linear-gradient(to bottom, #b32020, #8f1717);
  color: #fff;
  border: none;
  padding: 0 36px;
  height: 58px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-btn:hover {
  background: linear-gradient(to bottom, #c62828, #a31414);
}

/* Tabs */
.hero-search-tabs {
  display: flex;
  background: rgba(245, 238, 230, 0.9);
  border-top: 1px solid #d8c9b7;
  min-height: 44px;
}
.hero-search-tabs span {
  flex: 1;
  text-align: center;
  line-height: 44px;
  font-size: clamp(11px, 1.2vw, 17px);
  letter-spacing: 0.6px;
  color: #6f5a43;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0 8px;
}
.hero-search-tabs span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  height: 24px;
  width: 1px;
  background: #d8c9b7;
}
.hero-search-tabs .active {
  color: #b32020;
  font-weight: 600;
}

/* ============================================
   HERO BOTTOM STRIP
============================================ */
.hero-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.38));
}
.hero-bottom-inner {
  margin: 0 auto;
  padding: 22px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-item {
  text-align: center;
  color: #f1d3a2;
  flex: 1;
  min-width: 100px;
}
.hero-item i {
  font-size: 30px;
  margin-bottom: 8px;
  display: block;
}
.hero-item img {
  width: 30%;
  max-width: 50px;
}
.hero-item p {
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

/* ============================================
   HERO RESPONSIVE
============================================ */
@media (max-width: 991px) {
  .hero-section {
    min-height: 90vh;
  }
  .hero-content {
    margin-top: -15%;
  }
  .hero-search-bar {
    flex-direction: column;
    height: auto;
    border-radius: 8px 8px 0 0;
  }
  .hero-search-bar > .search-field {
    width: 100%;
    flex: none;
    height: 50px;
    border-right: none;
    border-bottom: 1px solid #d8c9b7;
  }
  .hero-search-bar > .search-field:last-of-type {
    border-bottom: none;
  }
  .hero-search-bar > .search-field button.search-field {
    width: 100%;
    height: 100%;
    border-bottom: none !important;
  }
  .search-btn {
    width: 100%;
    height: 50px;
    padding: 0;
	display:block; text-align:center;
  }
  .hero-search-tabs {
    flex-direction: column;
    height: auto;
  }
  .hero-search-tabs span {
    line-height: 40px;
    font-size: 13px;
    border-bottom: 1px solid #d8c9b766;
  }
  .hero-search-tabs span:not(:last-child)::after {
    display: none;
  }
  .hero-bottom-strip {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
  }
  .hero-bottom-inner {
    justify-content: center;
    gap: 15px;
    padding: 20px 10px;
  }
  .hero-item {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 80px;
  }
}
@media (max-width: 575px) {
  .hero-section {
    min-height: 80vh;
  }
  .hero-content {
    margin-top: -20%;
    padding: 0 10px;
  }
  .hero-search-wrapper {
    margin-top: 20px;
  }
  .hero-item {
    flex: 0 0 calc(50% - 15px);
  }
  .hero-item p {
    font-size: 11px;
  }
}

/* ============================================
   LUXURY APARTMENTS SECTION
============================================ */
.luxury-section {
  padding: 80px 38px;
  background: radial-gradient(circle at top, #ffffff, #f3f0ed);
}
.luxury-label {
  color: #c9a46b;
  letter-spacing: 2px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
}
.luxury-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  margin-top: 6px;
  font-family: "canva";
}
.luxury-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}
.luxury-tabs button {
  border: 1px solid #e0d8cf;
  background: #f7f5f2;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.luxury-tabs .active {
  background: #1f1f1f;
  color: #fff;
}
.luxury-tabs .highlight {
  background: #a31212;
  color: #fff;
  border-color: #a31212;
}

/* Cards */
.luxury-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.luxury-card:hover {
  transform: translateY(-6px);
}
.card-img {
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.view-details {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #b01c1c;
  color: #fff;
  padding: 4px 11px;
  font-size: 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.view-details:hover {
  background: #8f1717;
}

/* Card Body */
.card-body {
  padding: 16px;
}
.card-body small {
  color: #b58b5a;
  font-size: 12px;
}
.card-body h5 {
  font-size: 18px;
  margin: 6px 0;
}
.location {
  font-size: 13px;
  color: #666;
}
.card-body ul {
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  margin: 10px 0;
}
.card-body ul li {
  margin-bottom: 4px;
}
.price {
  color: #7a3e00;
  font-weight: 600;
}

/* CTA */
.view-all-btn {
  display: inline-block;
  background: linear-gradient(#b01c1c, #7e0f0f);
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.view-all-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176, 28, 28, 0.3);
}

/* Swiper & Arrows */
.luxury-cards-wrapper {
  position: relative;
}
.luxurySwiper {
  padding: 10px 0 40px;
}
.swiper-slide {
  height: auto;
}
.luxury-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: linear-gradient(#b01c1c, #7e0f0f);
  border: none;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: filter 0.3s ease;
}
.luxury-arrow.left {
  left: -47px;
}
.luxury-arrow.right {
  right: -47px;
}
.luxury-arrow i {
  font-size: 14px;
}
.luxury-arrow:hover {
  filter: brightness(1.1);
}
.card-features {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
}
.card-features i {
  font-size: 14px;
  color: #c19a6b;
  min-width: 16px;
}
.card-features span {
  line-height: 1.4;
}

/* Luxury responsive */
@media (max-width: 991px) {
  .luxury-section {
    padding: 50px 20px;
  }
  .luxury-tabs {
    margin: 20px 0 30px;
  }
  .luxury-arrow.left {
    left: -10px;
  }
  .luxury-arrow.right {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .luxury-section {
    padding: 40px 15px;
  }
  .luxury-arrow {
    width: 36px;
    height: 36px;
  }
  .luxury-arrow.left {
    left: 0;
  }
  .luxury-arrow.right {
    right: 0;
  }
  .card-img img {
    height: 160px;
  }
}
@media (max-width: 575px) {
  .luxury-section {
    padding: 30px 10px;
  }
  .luxury-tabs button {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ============================================
   WHY CHOOSE SECTION
============================================ */
.why-choose-full {
  position: relative;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.swiper-slide-active .why-overlay-box {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whyChooseSwiper {
  width: 100%;
  height: 100%;
}
.whyChooseSwiper .swiper-slide {
  height: auto;
}
.why-overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 55%;
  padding: 80px 60px;
  backdrop-filter: blur(2px);
}
.why-script {
  font-style: italic;
  font-size: 22px;
  color: #b58b5a;
}
.why-overlay-box h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  margin: 6px 0 16px;
}
.why-overlay-box p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
.why-stats {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.stat-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 22px;
  border-radius: 8px;
  text-align: center;
  min-width: 130px;
  flex: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.stat-card i {
  font-size: 26px;
  color: #c19a6b;
  margin-bottom: 6px;
}
.stat-card img {
  max-width: 50px;
}
.stat-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin: 6px 0;
}
.stat-card span {
  font-size: 13px;
  color: #666;
}
.explore-more-btn {
  display: inline-block;
  padding: 12px 38px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #f6e2b2 0%, #e7c98d 45%, #d3ae6f 100%);
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.8),
    inset 0 -2px 3px rgba(0, 0, 0, 0.15),
    0 6px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}
.explore-more-btn:hover {
  background: linear-gradient(to bottom, #f9e8be 0%, #ecd29a 45%, #dcb77c 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.9),
    inset 0 -2px 3px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}
.explore-more-btn:active {
  transform: translateY(0);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.25);
}
.why-floating-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  background: #b01c1c;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}
.why-floating-arrow:hover {
  background: #8f1717;
}

/* Why Choose responsive */
@media (max-width: 991px) {
  .why-choose-full {
    min-height: auto;
  }
  .why-overlay-box {
    position: relative;
    width: 100%;
    padding: 50px 30px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.85);
  }
  .why-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .stat-card {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
  .why-floating-arrow {
    display: none;
  }
  .div[style*="margin-left"] {
    margin-left: 0 !important;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .why-overlay-box {
    padding: 30px 15px;
  }
  .stat-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .explore-more-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ============================================
   NEW LAUNCH SECTION
============================================ */
.new-launch-section {
  padding: 80px 0 60px;
  text-align: center;
}
.launch-label {
  color: #c19a6b;
  font-size: 18px;
  letter-spacing: 2px;
}
.launch-heading h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  margin-top: 6px;
}
.lux-slider-wrapper {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}
.luxSwiper {
  overflow: visible;
}
.lux-slide-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 520px;
  transition: all 0.4s ease;
}
.lux-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lux-slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, transparent 60%);
}
.lux-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}
.lux-play:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lux-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 5;
  text-align: left;
}
.lux-info h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  margin-bottom: 6px;
}
.lux-info p {
  margin-bottom: 6px;
  font-size: 16px;
}
.lux-info span {
  color: #ffd54f;
  font-weight: 600;
}
.lux-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
.lux-arrow:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.lux-prev {
  left: -20px;
}
.lux-next {
  right: -20px;
}
.luxSwiper .swiper-slide {
  opacity: 0.4;
  transform: scale(0.88);
  transition: all 0.4s ease;
}
.luxSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* Launch CTA */
.launch-cta a {
  display: inline-block;
  background: #b01c1c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.launch-cta a:hover {
  background: #8f1717;
  color: #fff;
  transform: translateY(-2px);
}
.launch-tagline {
  margin-top: 26px;
  font-size: clamp(16px, 2vw, 22px);
  color: #444;
}

/* Launch responsive */
@media (max-width: 991px) {
  .new-launch-section {
    padding: 50px 15px 40px;
  }
  .lux-slide-card {
    height: 400px;
  }
  .lux-prev {
    left: 5px;
  }
  .lux-next {
    right: 5px;
  }
}
@media (max-width: 575px) {
  .new-launch-section {
    padding: 30px 10px 30px;
  }
  .lux-slide-card {
    height: 320px;
  }
  .lux-play {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .lux-info {
    bottom: 20px;
    left: 20px;
  }
  .lux-info p {
    font-size: 14px;
  }
  .lux-arrow {
    width: 34px;
    height: 34px;
  }
}

/* ============================================
   MARQUEE / PARTNER STRIP
============================================ */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: #fff;
}
.marquee {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
}
.marquee-track img {
  width: auto;
  height: 60px;
 
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.next-btn {
  position: absolute;
  right: 20px;
  top: 0;
  background: #c62828;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
}

/* Partner strip */
.partner-strip-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.partner-strip {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.partner-logo {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #eee;
}
.partner-logo:last-child {
  border-right: none;
}
.partner-logo img {
  max-height: 69px;
  max-width: 120px;
  object-fit: fill;
  opacity: 0.95;
}
.partner-arrow {
  position: absolute;
  right: 20px;
  top: 60%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #b01c1c;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Marquee responsive */
@media (max-width: 768px) {
  .marquee-track img {
    width: 130px;
    height: 60px;
  }
  .marquee-track {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .partner-strip {
    flex-wrap: wrap;
  }
  .partner-logo {
    flex: 0 0 33.33%;
    border-bottom: 1px solid #eee;
  }
  .partner-logo:nth-last-child(-n + 3) {
    border-bottom: none;
  }
  .partner-arrow {
    display: none;
  }
}

/* ============================================
   LOCATIONS SECTION
============================================ */
.locations-section {
  padding: 80px 0;
  background: #fff;
  margin: auto;
}
.locations-header {
  text-align: center;
  margin-bottom: 30px;
}
.locations-subtitle {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  font-family: "canva";
}
.location-block {
  margin-bottom: 40px;
}
.location-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.location-block-header h3 {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  font-family: "canva";
}
.view-all {
  font-size: 13px;
  color: #c19a6b;
  text-decoration: none;
  white-space: nowrap;
}
.view-all span {
  margin-left: 4px;
}
.location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.location-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.location-card:hover {
  transform: translateY(-4px);
}
.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-info {
  padding: 14px;
}
.card-info h4 {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  margin-bottom: 4px;
}
.card-info p {
  font-size: clamp(12px, 1.1vw, 16px);
  color: #000000;
  margin-bottom: 6px;
  font-weight: 600;
}
.card-info span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}
.card-info strong {
  font-size: 13px;
}
.locations-cta {
  text-align: center;
  margin-top: 20px;
}
.explore-locations-btn {
  background: #b01c1c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.explore-locations-btn:hover {
  background: #8f1717;
  color: #fff;
  transform: translateY(-2px);
}

/* Locations responsive */
@media (max-width: 991px) {
  .locations-section {
    padding: 50px 15px;
  }
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .locations-section {
    padding: 30px 10px;
  }
  .location-cards {
    grid-template-columns: 1fr;
  }
  .location-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .location-card img {
    height: 200px;
  }
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  padding: 90px 70px;
  background: radial-gradient(circle at top, #ffffff, #f4f0ec);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/imgi_104_testimonial.png");
  opacity: 0.5;
  pointer-events: none;
}
.testimonials-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  font-family: "Times New Roman", Times, serif;
}
.testimonial-card {
  position: relative;
  z-index: 1;
}
.avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto -55px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 5;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-inner {
  background: linear-gradient(#f9f4ee, #f1e8de);
  padding: 70px 26px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.testimonial-card.featured .card-inner {
  background: linear-gradient(#fdf7ef, #f3e6d8);
  transform: translateY(-12px);
}
.stars {
  color: #c9a24d;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.card-inner h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}
.role {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}
.card-inner p {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.6;
  color: #444;
}

/* Testimonials responsive */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 60px 30px;
  }
  .testimonial-card.featured .card-inner {
    transform: none;
  }
  .testimonials-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 15px;
  }
  .avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto -45px;
  }
  .card-inner {
    padding: 55px 20px 25px;
  }
}

/* ============================================
   BLOGS
============================================ */
.blogs-section {
  padding: 80px 0;
  background: #fff;
}
.blogs-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 50px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-content {
  padding: 18px;
}
.blog-content h4 {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.blog-btn:hover {
  background: #8f1717;
  color: #fff;
}
.view-all-blogs {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.view-all-blogs:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* Blogs responsive */
@media (max-width: 991px) {
  .blogs-section {
    padding: 50px 15px;
  }
  .blogs-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .blog-card img {
    height: 180px;
  }
}
@media (max-width: 575px) {
  .blogs-section {
    padding: 30px 10px;
  }
}

/* ============================================
   FOOTER
============================================ */
.footer-utility {
  background: #f6f6f6;
  border-bottom: 1px solid #e5e5e5;
}
.utility-item {
  padding: 22px;
  border-right: 1px solid #e5e5e5;
  display: flex;
}
.ml-2 {
  margin-left: 15px;
}
.utility-item:last-child {
  border-right: none;
}
.utility-item i {
  color: #e53935;
  font-size: 26px;
  margin-bottom: 10px;
}
.utility-item h6 {
  font-size: 14px;
  font-weight: 600;
}
.utility-item p {
  font-size: 12px;
  color: #666;
}
.main-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 40px;
}
.footer-brand span {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 26px;
  font-family: "Times New Roman", Times, serif;
}
.footer-divider {
  border-color: #d4af37;
  margin: 20px 0 40px;
}
.footer-links h5,
.footer-bottom h5 {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  margin-bottom: 14px;
  font-family: "Times New Roman", Times, serif;
}
.footer-links ul,
.footer-bottom ul {
  list-style: none;
  padding: 0;
}
.footer-links li,
.footer-bottom li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.contact-footer p {
  font-size: 13px;
  margin-bottom: 6px;
}
.footer-socials i {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.quick-links-box {
  padding: 16px;
}
.quick-links-box h5 {
  background: linear-gradient(180deg, #ffffff, #c89116, #ffffff, #c89116);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-copyright {
  background: #ffffff;
  text-align: center;
  padding: 14px;
  margin-top: 40px;
}
.footer-copyright p {
  font-size: 12px;
  margin: 0;
  color: #090909;
}

/* Footer responsive */
@media (max-width: 768px) {
  .utility-item {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px;
  }
  .utility-item:last-child {
    border-bottom: none;
  }
  .main-footer {
    padding: 40px 0 0;
  }
  .footer-links h5,
  .footer-bottom h5 {
    font-size: 20px;
  }
  .footer-links li,
  .footer-bottom li {
    font-size: 14px;
  }
}

/* ============================================
   LOADING STATE
============================================ */
.luxury-cards-wrapper.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* No data state */
.no-data-slide {
  width: 100% !important;
}
.no-data-found {
  padding: 40px 20px;
}
.no-data-found i {
  opacity: 0.5;
}

/* ============================================
   WHY CHOOSE SLIDER WRAPPER
============================================ */
.why-choose-slider {
  overflow: hidden;
}

/* Why Choose Navigation Arrows */
.why-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.why-swiper-nav::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
}
.why-swiper-nav.prev {
  left: 20px;
}
.why-swiper-nav.prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  left: 55%;
}
.why-swiper-nav.next {
  right: 20px;
}
.why-swiper-nav.next::after {
  transform: translate(-50%, -50%) rotate(45deg);
  left: 45%;
}

@media (max-width: 768px) {
  .why-swiper-nav {
    width: 34px;
    height: 34px;
  }
  .why-swiper-nav.prev {
    left: 10px;
  }
  .why-swiper-nav.next {
    right: 10px;
  }
}

/* ============================================
   LOCATION SWIPER ARROWS
============================================ */
.location-prev,
.location-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: linear-gradient(#b01c1c, #7e0f0f);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.location-prev::after,
.location-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
}
.location-prev {
  left: -21px;
}
.location-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  left: 55%;
}
.location-next {
  right: -21px;
}
.location-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
  left: 45%;
}

/* ============================================
   BLOG SWIPER ARROWS
============================================ */
.blog-prev,
.blog-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: linear-gradient(#b01c1c, #7e0f0f);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.blog-prev::after,
.blog-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
}
.blog-prev {
  left: -21px;
}
.blog-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  left: 55%;
}
.blog-next {
  right: -21px;
}
.blog-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
  left: 45%;
}

@media (max-width: 768px) {
  .location-prev,
  .location-next,
  .blog-prev,
  .blog-next {
    width: 34px;
    height: 34px;
  }
  .location-prev,
  .blog-prev {
    left: 4px;
  }
  .location-next,
  .blog-next {
    right: 4px;
  }
}

/* ============================================
   VIDEO MODAL
============================================ */
.Model_Video {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.Model_Video.active {
  display: flex;
}
.Model_Video .video-content {
  width: 90%;
  max-width: 800px;
  position: relative;
}
.Model_Video .video-content iframe {
  border-radius: 10px;
}

/* ============================================
   ENQUIRY MODAL
============================================ */
.ModelEnquiry {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.ModelEnquiry.active {
  display: flex;
}

/* ============================================
   GLOBAL MOBILE OVERRIDES
============================================ */
html {
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .logo {
    height: 50px;
  }
  .locations-section {
    padding: 50px 15px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 15px;
  }
  .footer-utility .utility-item {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px;
  }
  .footer-utility .utility-item:last-child {
    border-bottom: none;
  }
  .main-footer {
    padding: 40px 15px 0;
  }
  .footer-links h5,
  .footer-bottom h5 {
    font-size: 20px;
    margin-top: 20px;
  }
  .footer-links li,
  .footer-bottom li {
    font-size: 14px;
  }
  .footer-brand span {
    font-size: 20px;
  }
  .marquee-track img {
    height: 55px;
  }
  .next-btn {
    display: none;
  }
}

@media (max-width: 575px) {
  .locations-section {
    padding: 30px 10px;
  }
  .location-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .location-card img {
    height: 200px;
  }
  .testimonials-section {
    padding: 30px 10px;
  }
  .blogs-section {
    padding: 30px 10px;
  }
  .new-launch-section {
    padding: 30px 10px 30px;
  }
  .luxury-section {
    padding: 30px 10px;
  }
  .hero-section {
    min-height: 70vh;
  }
  .hero-content {
    margin-top: -10%;
    padding: 0 10px;
  }
  .hero-search-wrapper {
    margin-top: 20px;
  }
  .footer-socials i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .contact-footer {
    text-align: left !important;
  }
}
