* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: 'Tenor Sans', sans-serif;
}
h1,h2,h3,h4{
   font-family:  'Tenor Sans', serif;
  margin-top: 0;
}
p{
  font-family: 'Montserrat',sans-serif;
}
/* THIS IS FOR ANIMATION FOR ALL THE SECTIONS */
section{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease, transform .9s ease;
}

section.show{
  opacity:1;
  transform:none;
}
.hero{
  opacity:1 !important;
  transform:none !important;
}

/* Base Header */
.lux-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 70px;
  display: flex;
  justify-content: center;
  transition: all 0.35s ease;
  z-index: 999;
  background: transparent;
}

/* When Scrolled */
.lux-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 70px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

/* Container */
.header-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header {
  height: 80px;              /* fixed – will NOT grow */
  padding: 0 40px;           /* unchanged */
  display: flex;
  align-items: center;
}

/* Logo */
/* .logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
} */
.logo img {
  height: 150px;              /* increase logo here */
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Desktop Navigation */
.navbar {
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}

.navbar a {
  margin-left: 35px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* When Scrolled → switch menu color */
.lux-header.scrolled .navbar a {
  color: #1a1a1a;
}

/* Hover Gold Effect */
.navbar a:hover {
  color: #c7a45f;
}

/* Contact Button */
.contact-btn {
  border: 1px solid #c7a45f;
  padding: 6px 18px;
  border-radius: 4px;
}

.contact-btn:hover {
  background: #c7a45f;
  color: white !important;
}

/* -------------------------
    MOBILE MENU
-------------------------- */
.menu-icon {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-icon span {
  height: 3px;
  width: 100%;
  background: #0a0a0a;
  transition: 0.3s ease;
}

/* When Scrolled → hamburger turns dark */
.lux-header.scrolled .menu-icon span {
  background: #000;
}

/* Mobile-specific nav */
@media (max-width: 900px) {

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100vw;
    background: gray;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  .navbar a {
    margin: 15px 0;
    color: #000 !important;
    font-size: 28px;
      font-family:'Tenor Sans', sans-serif;
      font-weight: 400;

  }

  /* Show hamburger */
  .menu-icon {
    display: flex;
  }

  /* Mobile menu open */
  .navbar.active {
    right: 0;
  }

  /* Hamburger Animation */
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* HERO SECTION */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%); /*  dim-dark effect */
}

/* Optional zoom-in effect */
.hero-slide.active img {
    animation: zoom 5s linear forwards;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); } /* Slight zoom like DLF */
}
  .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }
/* Centered content */
.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:last baseline;
  text-align:left;
  padding:0 20px;
  color:#ffffff;
  animation: fadeUp 1.2s ease;

}
    .hero-title {
        font-family: 'Tenor-Sans',sans-serif;
      font-size: 42px;
      font-weight: 400;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .hero-subtitle {
      font-size: 15px;
      font-weight: 500;
      font-family: 'Montserrat',sans-serif;
      opacity: 0.9;
      color: white;
    }
.hero-content .btn{
  color: white !important; 
}
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
/* LEGASY SECTION */
.legacy-premium{
  background:linear-gradient(180deg,#0c0c0c,#fff);
  color:#fff;
  padding:50px;
  position:relative;
}

/* HERITAGE */
.legacy-base{
  max-width:1200px;
  margin:auto;
}

.legacy-label{
  color:#b89a5a;
  letter-spacing:2px;
  font-size:13px;
  text-transform:uppercase;
}

.legacy-heading{
  font-size:50px;
  margin:20px 0;
  line-height:1.2;
  text-transform: uppercase;
}
.heritage-metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
  padding-top:60px;
  border-top:1px solid #b89a5a;
}

.metric-card{
  text-align:center;
  position:relative;
}

.metric-card::after{
  content:"";
  position:absolute;
  right:-25px;
  top:10%;
  width:1px;
  height:80%;
  background:#b89a5a;
}

.metric-card:last-child::after{
  display:none;
}

.metric-card strong{
  display:block;
  font-size:44px;
  font-weight:500;
  color:#b89a5a;
  margin-bottom:10px;
}

.metric-card span{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#bcbcbc;
}
/* IMAGE OVERLAP */
.premium-overlap{
  position:relative;
  max-width:1200px;
  margin:120px auto 0;
}

.premium-image{
  margin-top:-50px;
  z-index:2;
  position:relative;
}

.premium-image img{
  width:650px;
  height:700px;
  object-fit:cover;
  /* border-radius:18px; */
  box-shadow:0 40px 100px rgba(0,0,0,.6);
}

/* CONTENT OVER IMAGE */
.premium-content{
  position:absolute;
  right:30px;
  bottom:30px;
  width:550px;
  height: 650px;
  background:#fff;
  color:#111;
  padding:45px;
  /* border-radius:14px; */
  box-shadow:0 25px 70px rgba(0,0,0,.35);
  z-index:3;
}

.premium-content h2{
      font-size:28px;
  margin-top:25px;
  font-weight: 400;
  color: #c7a45f;
  text-transform: uppercase;
}

.premium-content h4{
    font-size:28px;
      font-weight: 400;
  color:#0a0a0a;
  margin-bottom:14px;
  text-transform: uppercase;
}

.premium-content p{
  font-size:15px;
  font-family: 'Montserrat',sans-serif;
  line-height:1.7;
  color:#444;
  font-weight: 500;
}
.premium-content a{
  text-decoration: none;
}
@media (max-width:1400px){
  .legacy-base,
  .premium-overlap{
    padding:0 24px;
  }
}
@media (max-width:1200px){

  .legacy-heading{
    font-size:44px;
  }

  .heritage-metrics{
    gap:40px;
  }

  .metric-card strong{
    font-size:40px;
  }
    .premium-overlap{
    padding:0 24px;
    margin-top:80px;
  }

  .premium-image img{
    width:520px;
    height:650px;
  }

  .premium-content{
    width:520px;
    height:600px;
    right:0px;
    bottom:30px;
    padding:36px;
  }

  .premium-content h2{
    font-size:28px;
    line-height:1.3;
  }

  .premium-content h4{
    font-size:20px;
  }

  .premium-content p{
    font-size:14px;
  }
}
@media (max-width:991px){

  .legacy-premium{
    padding:80px 0;
  }

  .legacy-heading{
    font-size:36px;
  }

  .heritage-metrics{
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    padding-top:50px;
  }
   .premium-overlap{
    margin-top:80px;
  }

  .premium-image img{
    width:500px;
    height:620px;
  }

  .premium-content{
    position:absolute;
    right:20px;
    bottom:25px;
    width:500px;
    padding:32px;
    height: 580px;
  }

  .premium-content h2{
    font-size:28px;
  }
  .premium-content h4{
    font-size:20px;
  }
  .premium-content p{
    font-size:14px;
  }

}
@media (max-width:600px){

  /* SECTION SAFE PADDING */
  .legacy-premium{
    padding:60px 16px;
    overflow:hidden;
  }

  /* HERITAGE TEXT */
  .legacy-base{
    padding:0;
  }

  .legacy-label{
    font-size:12px;
    letter-spacing:1.5px;
  }

  .legacy-heading{
    font-size:26px;
    line-height:1.25;
    margin-bottom:24px;
  }

  /* METRICS STACK */
  .heritage-metrics{
    grid-template-columns:1fr;
    gap:24px;
    padding-top:32px;
  }

  .metric-card::after{
    display:none;
  }

  .metric-card strong{
    font-size:30px;
  }

  .metric-card span{
    font-size:12px;
  }

  /* OVERLAP CONTAINER */
  .premium-overlap{
    margin-top:50px;
    padding:0;
  }

  /* IMAGE FULL WIDTH */
  .premium-image{
    margin-top:0;
  }

  .premium-image img{
    width:100%;
    height:300px;
    object-fit:cover;
  }

  /* CONTENT — NO ABSOLUTE (CRITICAL FIX) */
  .premium-content{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    height:auto;
    margin-top:-40px; /* soft luxury overlap */
    padding:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
  }

  .premium-content h2{
    font-size:15px;
  }

  .premium-content h4{
    font-size:17px;
  }

  .premium-content p{
    font-size:13px;
    line-height:1.6;
  }
}

.btn {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #c7a45f;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

.btn:hover {
  background: #c7a45f;
  color: white !important;
}
/* Luxurious Showcase Section */
.luxury-showcase {
  background:linear-gradient(100deg,#fff,#aaa);
  padding: 30px ;
  color: #0a1d37;
}

.luxury-showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.luxury-header {
  text-align: center;
  margin-bottom: 60px;
}
.luxury-header h1{
  font-size: 15px;
  font-weight: 500;
  color: #c7a45f;
    text-transform: uppercase;
}
.luxury-header h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #0a1d37;
  text-transform: uppercase;
}

.luxury-header p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #4b4b4b;
  font-family: 'Montserrat',sans-serif;
}

.luxury-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.luxury-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}

.luxury-item:hover {
  transform: translateY(-10px);
}

.luxury-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.luxury-item h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 20px 0 10px;
  color: #0a1d37;
    text-transform: uppercase;
}

.luxury-item p {
  font-size: 15px;
  font-weight: 500;
  padding: 0 15px 20px;
  color: #666;
  font-family: 'Montserrat',sans-serif;
}

@media (max-width: 992px) {
  .luxury-grid {
grid-template-columns: repeat(2,1fr);    
  }
}
/* Default (desktop) */
.luxury-cta {
  margin-top: 20px;
  text-align: center;
}

/* Below 1280px */
@media (max-width: 1280px) {
  .luxury-cta {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}
/* PROJECT SECTION */
.up-projects{
  background:linear-gradient(100deg,#fff,#aaa);
  padding:10px;
  color:#fff;
}

.up-container{
  max-width:1300px;
  margin:auto;
  padding:0 24px;
}

.up-header h2{ 
  font-size:42px;
  font-weight:400;
  color: #0a0a0a;
  letter-spacing:1px;
  text-align: center;
  text-transform:uppercase;
  margin-bottom:60px;
}

/* SLIDER */
.up-slider-wrap{
  position:relative;
}

.up-slider{
  display:flex;
  gap:50px;
  overflow:hidden;
  scroll-behavior:smooth;
}

/* CARD BASE */
.overlay-card{
  position:relative;
  overflow:hidden;
}

.overlay-card img{
  width:750px;
  height:550px;
  object-fit:cover;
  display:block;
  align-items: center;
}

/* DARK GRADIENT OVER IMAGE */
.up-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.1) 100%
  );
  z-index:1;
}

/* INFO OVER IMAGE */
.overlay-info{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:34px;
  z-index:2;
  color:#fff;

}

.overlay-info h3{
  font-size:42px;
  font-weight:400;
  text-transform: uppercase;
  margin-bottom:6px;
}

.overlay-info p{
  font-size:14px;
  font-weight: 500;
  color:#fff;
  margin-bottom:18px;
}

.overlay-info ul{
  list-style:none;
  padding:0;
  margin-bottom:20px;
}

.overlay-info ul li{
  font-size:14px;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
  color:#fff;
  margin-bottom:6px;
}

.overlay-info ul span{
  font-size: 14px;
  font-weight: 500;
    font-family: 'Montserrat',sans-serif;
  color:#fff;
  display:inline-block;
  width:70px;
}

 .overlay-info .btn{
  color: white;
  text-transform: uppercase;
 }
/* PREMIUM HOVER  */
.overlay-card:hover img{
  transform:scale(1.04);
  transition:0.6s ease;
}

.overlay-card img{
  transition:0.6s ease;
}

/* ARROWS */
.up-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.3);
  background:#c7a45f;
  color:#0a0a0a;
  font-size:30px;
  cursor:pointer;
  z-index:5;
}

.up-arrow.left{
  left:-30px;
}

.up-arrow.right{
  right:-30px;
}

.up-arrow:hover{
  border-color:#b89a5a;
}

/* VIEW ALL */
.up-view-all{
  margin-top:70px;
  text-align:right;
}

.up-view-all a{
  font-size:14px;
  color:#b89a5a;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:1px;
}
/* =====================================================
   GLOBAL RESPONSIVE — BELOW 1100px
   (Premium real-estate scaling)
   ===================================================== */
@media (max-width:1100px){

  /* CONTAINER WIDTH */
  .up-container,
  .container,
  .wrapper{
    max-width:100%;
    padding-left:24px;
    padding-right:24px;
  }

  /* PROJECT SLIDER ADJUSTMENTS */
  .up-slider{
    gap:32px;
  }

  .overlay-card img{
    width:500px;
    height:380px;
  }

  /* OVERLAY INFO POSITION FIX */
  .overlay-info{
    left:24px;
    right:24px;
    bottom:32px;
    margin:0;
    padding:0;
    max-width:520px;
  }

  .overlay-info ul li{
    font-size:13px;
  }

  /* ARROWS */
  .up-arrow{
    width:44px;
    height:44px;
    font-size:26px;
  }

  /* FOOTERS / NAVS */
  footer,
  nav{
    padding-left:5%;
    padding-right:5%;
  }

  /* GRID NORMALIZATION */
  .grid,
  .owners-grid,
  .exp-container{
    gap:48px;
  }

}
/* =====================================================
   GLOBAL RESPONSIVE — BELOW 768px
   (Upasna-style mobile & tablet behavior)
   ===================================================== */
@media (max-width:768px){
  /* PROJECT SLIDER — CORE */
  .up-slider{
    gap:30px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .overlay-card{
    min-width:100%;
    scroll-snap-align:start;
  }

  .overlay-card img{
    width:100%;
    height:400px;
  }

  /* OVERLAY CONTENT */
  .overlay-info{
    left:0;
    right:0;
    bottom:24px;
    padding:0 20px;
    margin:0;
    max-width:100%;
  }

  .overlay-info h3{
    font-size:24px;
  }

  .overlay-info p{
    font-size:13px;
    margin-bottom:14px;
  }

  .overlay-info ul li{
    font-size:13px;
  }

  /* ARROWS — INSIDE IMAGE CORNERS */
  .up-arrow{
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    font-size:24px;
    background:#c7a45f;
    border:1px solid rgba(255,255,255,.25);
  }

  .up-arrow.left{
    left:-30px;
  }

  .up-arrow.right{
    right:-30px;
  }

  /* HIDE SCROLLBAR (CLEAN LOOK) */
  .up-slider::-webkit-scrollbar{
    display:none;
  }

  /* VIEW ALL LINK */
  .up-view-all{
    margin-top:48px;
    text-align:left;
  }

}
/* ================= UPASNA MOBILE SLIDER (≤480px) ================= */
@media (max-width:480px){
  /* SLIDER WRAPPER */
  .up-slider{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:100vw;   /* 🔥 THIS IS THE KEY */
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;

    width:100vw;
    margin-left:calc(-50vw + 50%);
  }

  /* EACH PROJECT */
  .overlay-card{
    scroll-snap-align:start;
    width:100%;
    position:relative;
  }

  .overlay-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
  }

  /* OVERLAY CONTENT */
  .overlay-info{
    left:0;
    right:0;
    bottom:18px;
    padding:0 16px;
    max-width:100%;
  }

  .overlay-info h3{
    font-size:20px;
  }

  .overlay-info p,
  .overlay-info ul li{
    font-size:14px;
  }

  /* CLEAN LOOK */
  .up-slider::-webkit-scrollbar{
    display:none;
  }
}

         /* LAGASY SECTION */
.legacy-section {
  padding: 20px 8%;
  background: linear-gradient(-100deg,#aaa,#fff);
}

.legacy-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.legacy-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #c7a45f;
}

.legacy-content h2 {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 15px 0 30px;
}

.legacy-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.legacy-stats h3 {
  font-size: 28px;
  font-weight: 400;
  color: #c7a45f;
}

.legacy-stats p {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.legacy-text {
  max-width: 460px;
  line-height: 1.7;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
}

/* RIGHT IMAGES */
.legacy-images {
  position: relative;
  height: 300px;
}

.legacy-images .img {
  position: absolute;
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.6s ease;
}

/* OVERLAP POSITIONS */
.img-1 {
  top: 0;
  right: 0;
  z-index: 3;
}

.img-2 {
  top: 60px;
  right: 120px;
  z-index: 2;
}

.img-3 {
  top: 120px;
  right: 240px;
  z-index: 1;
}

/* Hover Lift Effect */
.legacy-images .img:hover {
  transform: translateY(-12px) scale(1.02);
}
@media (max-width: 1200px) {
  .legacy-section {
  padding: 50px 7%;}
  .legacy-container {
    grid-template-columns: 2,1fr;
    gap: 60px;
  }

  .legacy-images {
    height: 200px;
  }

  .legacy-images .img {
    width: 260px;
    height: 200px;
  }

  .img-2 { right: 80px; }
  .img-3 { right: 160px; }
}
@media (max-width: 900px) {
    .legacy-section {
  padding: 20px 7%;}
  .legacy-container {
    grid-template-columns: 2,1fr;
    gap: 60px;
  }

  .legacy-images {
    height: 220px;
  }

  .legacy-images .img {
    width: 160px;
    height: 200px;
  }

  .img-2 { right: 80px; }
  .img-3 { right: 160px; }
}

@media (max-width: 500px) {
    .legacy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
      .legacy-section {
  padding: 10px 7%;}
  .legacy-stats {
    flex-direction: column;
    gap: 10px;
  }

  .legacy-images {
    height: 280px;
  }

  .legacy-images .img {
    width: 180px;
    height: 140px;
  }
}
@media (max-width: 360px) {
  .legacy-stats {
    flex-direction: column;
    gap: 10px;
  }

  .legacy-images {
    height: 280px;
  }

  .legacy-images .img {
    width: 130px;
    height: 140px;
  }
}
/* <!-- HTML – Luxury Enquiry Section  --> */
.luxury-enquiry {
  background: linear-gradient(100deg,#fff,#aaa);
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  
}

.luxury-enquiry-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #111;
  padding: 20px 5px;
}

.luxury-enquiry-item {
  padding: 60px 55px;
  border-right: 1px solid #e6e6e6;
  position: relative;
}

.luxury-enquiry-item:last-child {
  border-right: none;
}

.enquiry-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 14px;
}

.luxury-enquiry-item h3 {
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.luxury-enquiry-item p {
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat',sans-serif;
  color: #555;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 420px;
}

.luxury-enquiry-item a {
  font-size: 13px;
  letter-spacing: 1.5px;
  /* text-transform: uppercase; */
  color: #111;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.luxury-enquiry-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: #111;
  transition: width 0.4s ease;
}

.luxury-enquiry-item a:hover::after {
  width: 100%;
}

/* Subtle hover lift */
.luxury-enquiry-item:hover {
  background: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .luxury-enquiry-container {
    grid-template-columns: 1fr;
  }

  .luxury-enquiry-item {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 50px 35px;
  }

  .luxury-enquiry-item:last-child {
    border-bottom: none;
  }
}
/* CALL FLOAT */
.call-float{
  position:fixed;
  bottom:94px; /* stacked above WhatsApp */
  right:28px;
  width:54px;
  height:54px;
  background:#0f172a; /* deep navy */
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.call-float:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.25);
}
/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:28px;
  right:28px; /* bottom-right  */
  width:54px;
  height:54px;
  background:#25d366;
  color:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.25);
}

/* Footer Styles */
.site-footer {
  background-color: #101010;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 40px 0 20px;
  margin-top: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 0 20px;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}
.footer-col p,
.footer-col ul {
  font-family: 'Montserrat',sans-serif;
  font-size: 0.95em;
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-col  p a{
      font-family: 'Montserrat',sans-serif;
    font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: gray;
}
.social-icons a {
  margin-right: 15px;
  color: #ccc;
  font-size: 1.2em;
  text-decoration: none;
}
.social-icons a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
}
.footer-bottom p {
  font-size: 15px;
  font-weight: 500;
  color: #777;
  margin: 0;
}
.footer-bottom  a {
      font-family: 'Montserrat',sans-serif;
    font-size: 15px;
  font-weight: 500;
text-decoration: none;
color:gray;
position: relative;
}
.footer-bottom a::after{
   content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:#B89A5A;
  transition:.3s;
}
.footer-bottom a:hover::after{
  width: 100%;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 30px;
  }
}
/* =====================================================
   GLOBAL RESPONSIVE SAFETY
===================================================== */
img, video {
  max-width: 100%;
  height: auto;
}

section {
  overflow-x: hidden;
}

/* =====================================================
   LARGE DESKTOPS (≥1600px)
===================================================== */
@media (min-width: 1600px) {

  .header-container,
  .premium-section .container,
  .luxury-showcase .container,
  .luxury-enquiry-container,
  .footer-container {
    max-width: 1400px;
  }
}

/* =====================================================
   LAPTOPS & SMALL DESKTOPS (≤1200px)
===================================================== */
@media (max-width: 1200px) {
  .hero-slider{
    height: 500px;
  }
  .lux-header {
    padding: 16px 40px;
  }
  .lux-header.scrolled {
    padding: 10px 40px;
  }
 .hero-title {
    font-size: 44px;
  }
  .luxury-enquiry{
    padding: 40px 0;
  }
}
/* =====================================================
   TABLETS LANDSCAPE (≤992px)
===================================================== */
@media (max-width: 992px) {
  .hero-slider {
    height: 85vh;
  }
 .hero-title {
    font-size: 38px;
    letter-spacing: 2px;
  }
  .luxury-header h2 {
    font-size: 36px;
  }

}

/* =====================================================
   TABLETS & LARGE MOBILES (≤768px)
===================================================== */
@media (max-width: 768px) {
  .lux-header {
    padding: 14px 24px;
  }

  .logo img {
    height: 120px;
  }

  .hero-slider {
    height: 75vh;
  }
.hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
.luxury-showcase{
  padding: 5px 10%;
}

  .luxury-item {
    max-width: 100%;
  }

  .luxury-item img {
    height: 200px;
  }
  .luxury-enquiry {
    padding: 0px 0;
  }

  .luxury-enquiry-item {
    padding: 25px 30px;
  }

  .call-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
}

/* =====================================================
   SMALL MOBILES (≤480px)
===================================================== */
@media (max-width: 480px) {
  .logo img{
    height: 100px;
  }
  .hero-slider {
    height: 68vh;
  }
 .hero-title {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
  .luxury-header h1 {
    font-size: 15px;
  }
  .luxury-header h2 {
    font-size: 20px;
  }
.luxury-showcase{
  padding: 10px 10%;
}
  .luxury-item h3 {
    font-size: 20px;
  }

  .luxury-item p {
    font-size: 15px;
  }
  .footer-container {
    padding: 0 15px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col ul {
    font-size: 14px;
  }
}

/* =====================================================
   EXTRA SMALL DEVICES (≤360px)
===================================================== */
@media (max-width: 360px) {
  .logo img {
    height: 100px;
  }
     .luxury-enquiry {
    padding: 0px 0;
  }
.up-header h2{
  font-size: 35px;
}
  .luxury-enquiry-item {
    padding: 25px 20px;
  }
  .luxury-enquiry-item a{
    font-size: 10px;
  }
  .call-float,
  .whatsapp-float {
    width: 46px;
    height: 46px;
    right: 18px;
  }

  .call-float {
    bottom: 82px;
  }

  .whatsapp-float {
    bottom: 20px;
  }
}

