/* GLOBAL RESET */
@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/OPTIMA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/Optima_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/OPTIMA_B.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "OptimaCustom";
  src: url("./fonts/Optima_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html, body{
overflow-x:hidden;
}

/* BODY */

body{
font-family: 'Lato', 'Open Sans', sans-serif;
background:#000;
}

/* HEADINGS FONT */

h1, h2, h3{
font-family:"OptimaCustom", sans-serif;
font-weight: 400;
}

/* HERO */

.hero{
position:relative;
height:100vh;
overflow:hidden;
margin-top:70px;
}

/* VIDEO */

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;

display:flex;
align-items:center;
justify-content:space-between;

padding:15px 60px;
height:70px;

z-index:1000;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
}

.nav-left{
flex:1;
}

.nav-logo{
font-size:28px;
letter-spacing:3px;
}

/* CENTER NAV */

.nav-center{
flex:2;
display:flex;
justify-content:center;
}

.nav-center ul{
display:flex;
gap:35px;
list-style:none;
color: white;
}

.nav-center li{
cursor:pointer;
position:relative;
text-transform:uppercase;
}

/* DROPDOWN */

.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);

  background: white;
  color: black;

  padding: 18px 35px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;

  white-space: nowrap;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.dropdown-menu li{
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  text-transform:uppercase;
}

/* SHOW ONLY ON HOVER */

.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
}

.logo-img{
height:180px;
width:auto;
display:block;

}

.footer-logo-img{
height:110px;
width:auto;
max-height:110px;
}

.address-column ul li{
line-height:1.7;
max-width:420px;
}



/* right icons */

.nav-right{
flex:1;
display:flex;
justify-content:flex-end;
align-items:center;
gap:22px;
width: 330px;
}

.visit-btn{
background:#c7a386;
color:black;
padding:10px 18px;
border:none;
margin-left:4px;
border-radius:4px;
cursor:pointer;
white-space:nowrap;
}

/* HERO TEXT */

.hero-content{
position:absolute;
top:45%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
max-width:900px;
}

.hero-content h1{
font-size:60px;
font-weight:600;
line-height:1.2;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
letter-spacing:1px;
opacity:0.9;
}

.phone-link{
display:flex;
align-items:center;
color:#c7a386;
text-decoration:none;
overflow:hidden;
}



.phone-text{
max-width:0;
overflow:hidden;
white-space:nowrap;
margin-left:0;
font-size:12px;
transition:max-width .35s ease, margin .35s ease;
}

.phone-link:hover .phone-text{
max-width:140px;
margin-left:8px;
}

.whatsapp{
display:flex;
align-items:center;
color:#c7a386;
text-decoration:none;
overflow:hidden;
}

/* HOMES SLIDER */

.homes-slider{
position:relative;
margin-top:40px;
}

.homes-track{
overflow:hidden;
}

.homes-grid{
display:flex;
gap:30px;
transition:transform .6s ease;
}

.home-card{
min-width:calc(100% / 3 - 20px);
}

/* arrows */

.homes-arrow{
position:absolute;
top:40%;
transform:translateY(-50%);
width:45px;
height:45px;
border-radius:50%;
border:none;
background:white;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
cursor:pointer;
font-size:18px;
z-index:2;
}

.homes-left{
left:-25px;
}

.homes-right{
right:-25px;
}

.homes-arrow:hover{
transform:translateY(-50%) scale(1.08);
}

.whatsapp-text{
max-width:0;
overflow:hidden;
white-space:nowrap;
margin-left:0;
font-size:12px;
transition:max-width .35s ease, margin .35s ease;
}

.whatsapp:hover .whatsapp-text{
max-width:120px;
margin-left:8px;
}

.mobile-menu-btn{
display:none;
background:none;
border:none;
color:#c7a386;
font-size:24px;
cursor:pointer;
position:relative;
}

.mobile-menu-btn i{
display:block;
}

.mobile-menu-btn .close-icon{
display:none;
}

.mobile-menu-btn.active .menu-icon{
display:none;
}

.mobile-menu-btn.active .close-icon{
display:block;
}

/* FILTER BAR */

.filter-bar{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
background:white;
padding:15px;
border-radius:40px;
display:flex;
gap:15px;
align-items:center;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.filter{
position:relative;
}

.filter:not(:last-of-type)::after{
content:"";
position:absolute;
right:-15px;   /* gap create karega */
top:50%;
transform:translateY(-50%);
width:1px;
height:30px;
background:#ddd;
}

.filter select{
border:none;
outline:none;
font-size:15px;
padding:10px;
background:transparent;
text-transform:uppercase;
}

.filter select option{
border:none !important;
outline:none !important;
background:white !important;
color:black !important;
}

.filter select option:hover,
.filter select option:focus,
.filter select option:checked{
background:#f5f5f5 !important;
color:black !important;
}

.filter select:focus option:checked,
.filter select option[selected]{
background:#f5f5f5 !important;
}

/* SEARCH BUTTON */

.search-btn{
background:black;
color:white;
padding:12px 20px;
border:none;
border-radius:25px;
cursor:pointer;
font-weight:bold;
white-space:nowrap;
text-transform:uppercase;
}


/* PREMIUM SECTION */

.premium-properties{
padding:90px 80px;
background:#f6f6f6;
}

.premium-container{
max-width:1200px;
margin:auto;
}

.premium-title{
font-size:46px;
letter-spacing:3px;
margin-bottom:25px;
color:#1b1b1b;
}

.premium-subtext{
max-width:800px;
font-size:17px;
line-height:1.7;
color:#555;
margin-bottom:50px;
}

.blog-section{
padding:80px 80px;
background:#f6f6f6;
font-family:'Lato', sans-serif;
}

.blog-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.blog-header h2{
font-size:28px;
}

.blog-header a{
color:#4f46e5;
text-decoration:none;
font-size:14px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.35s;
}

.blog-card:hover{
background:#fafafa;
transform:translateY(-4px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:22px;
}

.meta{
font-size:13px;
color:#777;
}

.blog-content h3{
font-size:18px;
line-height:1.4;
margin:12px 0;
}

.blog-content p{
font-size:14px;
color:#666;
line-height:1.6;
margin-bottom:25px;
}

/* link animation */

/* BLOG LINK */
/* BLOG LINK */
.blog-link{
display:inline-flex;
align-items:center;
cursor:pointer;
overflow:visible;
}

/* text hidden */

.link-text{
font-size:14px;
color:#c7a386;
max-width:0;
overflow:hidden;
white-space:nowrap;
transition:max-width .35s ease, margin .35s ease;
}

/* arrow */

.arrow{
font-size:18px;
transition:transform .35s ease;
color: #c7a386;
}

/* hover */

.blog-card:hover .link-text{
max-width:90px;
margin-right:6px;
}

.blog-card:hover .arrow{
transform:translateX(4px);
}

.premium-images{
display:flex;
gap:30px;
}

.premium-images img{
width:100%;
height:260px;
object-fit:cover;
border-radius:4px;
}


/* HOMES SECTION */

.homes-section{
padding:90px 80px;
background:#f5f5f5;
}

.homes-header{
margin-bottom:40px;
}



.homes-header h2{
font-size:48px;
margin-top:15px;
line-height:1.2;
}

/* GRID */

.homes-grid{
display:flex;
gap:30px;
transition:transform .6s ease;
}

.home-card{
flex:0 0 calc(100% / 3 - 20px);
}

/* CARD */

.home-card{
background:#f5f5f5;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* IMAGE */

.home-image{
position:relative;
overflow:hidden;
}

.home-image img{
width:100%;
height:300px;
object-fit:cover;
display:block;
}

/* HOVER BUTTON */

.explore-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.6);
color:white;
border:none;
padding:12px 20px;
border-radius:25px;
font-size:14px;
cursor:pointer;
opacity:0;
transition:0.3s;
}

/* SHOW BUTTON ON HOVER */

.home-image:hover .explore-btn{
opacity:1;
}

.home-image:hover img{
filter: blur(2px);
transition: filter 0.3s ease;
}

/* INFO */

.home-info{
padding:20px;
}

.home-info h3{
font-size:20px;
margin-bottom:5px;
text-transform:uppercase;
}

.home-desc{
display:block;
font-size:14px;
color:#777;
margin:6px 0 12px;
line-height:1.5;
text-transform:uppercase;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.home-location{
font-size:14px;
color:#999;
text-transform:uppercase;
}


/* STATS SECTION */

.stats-section{
padding:100px 80px;
background:#ffffff;
}

.gallery-slider{
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.gallery-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
font-size:22px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
z-index:2;
}

.gallery-arrow.left{
left:-25px;
}

.gallery-arrow.right{
right:-25px;
}

.gallery-arrow:hover{
transform:translateY(-50%) scale(1.08);
}

.stats-container{
display:flex;
gap:60px;
align-items:flex-start;
}

/* LEFT */

.stats-left{
max-width:320px;
}

.stats-tag{
font-size:14px;
color:#777;
}

.stats-left h2{
font-size:48px;
margin:15px 0;
line-height:1.1;
}

.stats-left p{
color:#666;
line-height:1.6;
}

/* GRID */

.stats-grid{
flex:1;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* CARD */

.stat-card{
background:#f5f5f5;
padding:30px;
border-radius:12px;
}

.stat-card h3{
font-size:36px;
margin-bottom:10px;
}

.stat-card p{
font-size:14px;
color:#777;
line-height:1.5;
}

.testimonial-section{
padding:120px 0;
background:#f5f5f5;
text-align:center;
}

.testimonial-header{
margin-bottom:70px;
}



.testimonial-header h2{
font-size:44px;
}

/* carousel container */

.carousel{
position:relative;
width:1400px;
margin:auto;
height:460px;
overflow:hidden;
}

/* cards stage */

.carousel-stage{
position:relative;
height:100%;
width:100%;
}

/* base card */

.card{
position:absolute;
border-radius:20px;
overflow:hidden;
transition:all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
will-change:transform, opacity, filter;
backface-visibility:hidden;
transform-style:preserve-3d;
}

.card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:none;
}

/* center card */

.card.center{
width:660px;
height:420px;
left:50%;
top:20px;
transform:translateX(-50%) translateZ(0);
z-index:3;
opacity:1;
filter:none;
}

/* side cards */

.card.left{
width:330px;
height:280px;
left:10px;
top:90px;
opacity:0.6;
filter:brightness(0.8);
border-radius:24px;
transform:perspective(1500px) rotateY(12deg) scale(0.88) translateZ(-50px);
transform-origin:center right;
z-index:1;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.card.right{
width:330px;
height:280px;
right:10px;
top:90px;
opacity:0.6;
filter:brightness(0.8);
border-radius:24px;
transform:perspective(1500px) rotateY(-12deg) scale(0.88) translateZ(-50px);
transform-origin:center left;
z-index:1;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.card.right img{
border-radius:24px;
}

.card.left img{
border-radius:24px;
}

/* gradient overlay */

.card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:60%;
background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
pointer-events:none;
}

/* text overlay */

.overlay{
position:absolute;
bottom:30px;
left:30px;
right:30px;
color:white;
font-size:18px;
line-height:1.4;
z-index:2;
opacity:1;
transform:translateY(0);
}
.blog-link .arrow{
font-size:18px;
transition:0.35s;
}

.card.center .overlay{
font-size:20px;
bottom:40px;
left:40px;
right:40px;
}

.card.left .overlay,
.card.right .overlay{
font-size:16px;
bottom:25px;
left:25px;
right:25px;
}

.carousel .arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:55px;
height:55px;
border-radius:50%;
border:none;
background:rgba(255,255,255,0.95);
color:#333;
cursor:pointer;
font-size:22px;
z-index:10;
transition:all 0.4s;
display:flex;
align-items:center;
justify-content:center;
}

.arrow:hover{
background:white;
transform:translateY(-50%) scale(1.08);
box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.arrow:active{
transform:translateY(-50%) scale(0.95);
}

.arrow-left{
left:320px;
}

.arrow-right{
right:320px;
}

.experience-section{
padding:100px 0;
background:#f5f5f5;
overflow:hidden;
}

/* marquee container */

.marquee{
width:100%;
overflow:hidden;
}

/* moving track */

.marquee-track{
display:flex;
gap:40px;
width:max-content;
animation:scroll 25s linear infinite;
}

/* stop scroll on hover */

.marquee:hover .marquee-track{
animation-play-state:paused;
}

/* cards */

.exp-card{
width:390px;
height:507px;
border-radius:21px;
overflow:hidden;
flex-shrink:0;
position:relative;
}

.exp-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* gradient shadow */

.exp-card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:50%;
background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
}

.exp-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:50%;
background:linear-gradient(to bottom,rgba(0,0,0,.8),transparent);
z-index:1;
}

/* overlay text */

.exp-overlay{
position:absolute;
top:25px;
left:25px;
right:25px;
color:white;
transition:all 0.4s ease;
z-index:2;
}

.exp-overlay h4{
font-size:14px;
letter-spacing:2px;
margin-bottom:8px;
opacity:1;
transform:translateY(0);
transition:all 0.4s ease;
}

.exp-overlay p{
font-size:16px;
opacity:0;
transform:translateY(20px);
transition:all 0.4s ease;
position:absolute;
bottom:-420px;
left:0;
right:0;
}

/* show subheading on hover */

.exp-card:hover .exp-overlay p{
opacity:1;
transform:translateY(0);
bottom:-430px;
}

/* animation */

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(calc(-320px * 4));
}
}

.about-intro{
text-align:center;
max-width:1100px;
margin:0 auto 80px auto;
padding:0 10px;
}

.about-tag{
display:inline-block;
font-size:12px;
letter-spacing:2px;
background:#eee;
padding:6px 14px;
border-radius:20px;
color:#666;
margin-bottom:20px;
}

.about-text{
font-size:44px;
line-height:1.4;
font-weight:500;
color:#222;
}

.emotion-section{
position:relative;
height:520px;
background-image:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

/* dark overlay */

.emotion-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

/* text */

.emotion-content{
position:relative;
text-align:center;
max-width:900px;
padding:0 20px;
}

.emotion-content h2{
color:white;
font-size:46px;
line-height:1.3;
font-weight:500;
}


.story-section{
padding:100px 80px;
background:#f5f5f5;
}

.story-container{
display:flex;
gap:60px;
align-items:flex-start;
}

/* LEFT IMAGE */

.story-image{
flex:1;
}

.story-image img{
width:100%;
height:640px;
object-fit:cover;
border-radius:22px;
}

/* RIGHT CONTENT */

.story-content{
flex:1;
max-width:600px;
}

.story-content h3{
font-size:28px;
letter-spacing:2px;
margin-bottom:15px;
}

.story-content p{
font-size:16px;
line-height:1.7;
color:#444;
margin-bottom:20px;
}

.story-content ul{
margin-bottom:25px;
padding-left:20px;
}

.story-content ul li{
margin-bottom:10px;
list-style:square;
}

/* closing text */

.closing{
font-weight:500;
margin-bottom:25px;
}

/* button */

.call-btn{
background:#111;
color:white;
border:none;
padding:14px 26px;
border-radius:30px;
cursor:pointer;
font-size:14px;
letter-spacing:1px;
transition:.3s;
}

.call-btn:hover{
background:#333;
}

.hero-home{
position:relative;
height:100vh;
background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
}

/* dark overlay */

.hero-home::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

/* top bar */

.hero-top{
position:absolute;
top:28px;
left:40px;
right:40px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:2;
}

.logo{
font-size:22px;
font-weight:600;
}

.menu{
font-size:26px;
cursor:pointer;
}

/* horizontal line */

.hero-line{
position:absolute;
top:70px;
left:40px;
right:40px;
height:1px;
background:rgba(255,255,255,0.35);
z-index:2;
}

/* center content */

.hero-center{
position:relative;
z-index:2;
text-align:center;
max-width:750px;
}

.hero-center h1{
font-size:64px;
line-height:1.2;
margin-bottom:20px;
font-weight:500;
}

.hero-center p{
font-size:16px;
opacity:.85;
margin-bottom:25px;
}

.hero-btn{
background:white;
color:black;
border:none;
padding:10px 22px;
border-radius:8px;
cursor:pointer;
font-size:14px;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablets & Small Laptops (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 30px;
  }

  .nav-center ul {
    gap: 20px;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .filter-bar {
    padding: 12px;
    gap: 10px;
    width: 90%;
  }

  .premium-properties {
    padding: 60px 40px;
  }

  .premium-title {
    font-size: 36px;
  }

  .homes-section {
    padding: 60px 40px;
  }

  .homes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-container {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel {
    width: 100%;
    max-width: 900px;
  }

  .arrow-left {
    left: 20px;
  }

  .arrow-right {
    right: 20px;
  }

  .story-container {
    padding: 0 20px;
    gap: 40px;
  }
}

  /* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  
  /* NAVBAR - Mobile */
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: white;
    margin: 0;
    height: 70px;
    box-sizing: border-box;
  }

  .nav-left {
    width: auto;
    text-align: left;
    z-index: 1002;
    position: relative;
  }

  .logo {
    font-size: 24px;
  }

  .nav-center {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    z-index: 1001;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .nav-center.active {
    display: block;
  }

  .nav-center ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    color: black;
    margin: 0;
    list-style: none;
    padding: 0;
  }

  .nav-center ul li {
    padding: 8px 0;
    width: 100%;
    text-align: left;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-center ul li:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    display: none !important;
  }

  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .nav-right {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
    z-index: 1002;
    position: relative;
  }

  .nav-right .phone-link,
  .nav-right .whatsapp,
  .nav-right .visit-btn {
    display: none;
  }

  .mobile-nav-items {
    display: none;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    background: white;
    width: 100%;
  }

  .nav-center.active .mobile-nav-items {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-center .mobile-nav-items .phone-link,
  .nav-center .mobile-nav-items .whatsapp,
  .nav-center .mobile-nav-items .visit-btn {
    display: flex !important;
    visibility: visible !important;
    color: black;
    text-decoration: none;
    padding: 8px 0;
    width: 100%;
    align-items: center;
    gap: 8px;
  }

  .nav-center .mobile-nav-items .phone-link {
    color: #c7a386 !important;
  }

  .nav-center .mobile-nav-items .whatsapp {
    color: #25D366 !important;
  }

  .nav-center .mobile-nav-items .visit-btn {
    background: #c7a386 !important;
    color: black !important;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    width: auto;
    font-size: 14px;
  }

  .nav-center .mobile-nav-items .phone-text,
  .nav-center .mobile-nav-items .whatsapp-text {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Push hero section down when menu is open */
  .hero.menu-pushed {
    margin-top: 0;
    padding-top: 280px;
    transition: padding-top 0.3s ease;
  }

  .hero {
    margin-top: 70px;
    transition: padding-top 0.3s ease;
  }

  /* HERO TEXT */
  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* FILTER BAR - Mobile */
  .filter-bar {
    flex-direction: column;
    width: 90%;
    padding: 20px;
    gap: 12px;
    bottom: 20px;
    border-radius: 20px;
  }

  .filter {
    width: 100%;
  }

  .filter select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .search-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
  }

  /* PREMIUM SECTION */
  .premium-properties {
    padding: 50px 20px;
  }

  .premium-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .premium-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .premium-images {
    flex-direction: column;
    gap: 20px;
  }

  .premium-images img {
    height: 220px;
  }

  /* HOMES SECTION */
  .homes-section {
    padding: 50px 20px;
  }

  .homes-header h2 {
    font-size: 32px;
  }

  .homes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-image img {
    height: 250px;
  }

  /* STATS SECTION */
  .stats-section {
    padding: 60px 20px;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  @media(max-width:768px){

.homes-left{
left:5px;
}

.homes-right{
right:5px;
}

.homes-arrow{
width:36px;
height:36px;
font-size:14px;
}

}

@media(max-width:768px){

.homes-grid{
display:flex;
gap:16px;
}

.home-card{
flex:0 0 85%;
}

}

  .stats-left {
    max-width: 100%;
  }

  .stats-left h2 {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 25px;
  }

  /* TESTIMONIAL SECTION */
  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-header h2 {
    font-size: 32px;
  }

  .carousel {
    width: 100%;
    height: 350px;
  }

  .card.center {
    width: 85%;
    height: 320px;
  }

  .card.left,
  .card.right {
    width: 0;
    opacity: 0;
    visibility: hidden;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }

  .overlay {
    font-size: 16px;
    left: 20px;
    right: 20px;
  }

  /* EXPERIENCE SECTION */
  .experience-section {
    padding: 60px 0;
  }

  .about-intro {
    padding: 0 20px;
    margin-bottom: 50px;
  }

  .about-text {
    font-size: 28px;
  }

  .exp-card {
    width: 220px;
    height: 380px;
  }

  .marquee-track {
    gap: 25px;
  }

  /* EMOTION SECTION */
  .emotion-section {
    height: 400px;
  }

  .emotion-content h2 {
    font-size: 32px;
    padding: 0 20px;
  }

  /* STORY SECTION */
  .story-section {
    padding: 60px 20px;
  }

  .story-container {
    flex-direction: column;
    gap: 40px;
  }

  .story-image img {
    height: 400px;
  }

  .story-content {
    max-width: 100%;
  }

  .story-content h3 {
    font-size: 24px;
  }

  .story-content p {
    font-size: 15px;
  }

  /* HERO HOME */
  .hero-home {
    height: 80vh;
  }

  .hero-top {
    left: 20px;
    right: 20px;
    top: 20px;
  }

  .hero-line {
    left: 20px;
    right: 20px;
    top: 60px;
  }

  .hero-center {
    padding: 0 20px;
  }

  .hero-center h1 {
    font-size: 36px;
  }

  .hero-center p {
    font-size: 14px;
  }
}

@media (max-width: 768px){

.blog-section{
padding:60px 20px;
}

.blog-grid{
grid-template-columns:1fr;
gap:25px;
}

.blog-card img{
height:200px;
}

}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  
  .logo {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .nav-center ul {
    font-size: 12px;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 13px;
  }

.filter-bar{
flex-direction: column;
width: 90%;
padding: 20px;
gap: 12px;
bottom: 20px;
border-radius: 20px;

background: rgba(255,255,255,0.15);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.25);
box-shadow: none;

}

  .premium-title {
    font-size: 24px;
  }

  .premium-subtext {
    font-size: 14px;
  }

  .premium-images img {
    height: 180px;
  }

  .homes-header h2 {
    font-size: 28px;
  }

  .home-image img {
    height: 220px;
  }

  .stats-left h2 {
    font-size: 32px;
  }

  .stat-card h3 {
    font-size: 32px;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }

  .card.center {
    width: 90%;
    height: 280px;
  }

  .about-text {
    font-size: 24px;
  }

  .exp-card {
    width: 200px;
    height: 340px;
  }

  .emotion-section {
    height: 350px;
  }

  .emotion-content h2 {
    font-size: 26px;
  }

 .story-image{
width:100%;
}

.story-image img{
width:100%;
height:350px;
border-radius:10px;
object-fit:cover;
}

  .story-content h3 {
    font-size: 20px;
  }

  .hero-center h1 {
    font-size: 28px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
  
  .navbar {
    padding: 12px 15px;
  }

  .logo {
    font-size: 18px;
  }

  .nav-center ul {
    font-size: 11px;
    gap: 8px;
  }

  .visit-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .filter-bar {
    padding: 12px;
  }

  .filter select {
    padding: 10px;
    font-size: 13px;
  }

  .premium-properties {
    padding: 40px 15px;
  }

  .premium-title {
    font-size: 22px;
  }

  .homes-section {
    padding: 40px 15px;
  }

  .homes-header h2 {
    font-size: 24px;
  }

  .stats-section {
    padding: 50px 15px;
  }

  .stats-left h2 {
    font-size: 28px;
  }

  .testimonial-section {
    padding: 50px 15px;
  }

  .testimonial-header h2 {
    font-size: 24px;
  }

  .about-text {
    font-size: 22px;
  }

  .emotion-content h2 {
    font-size: 24px;
  }

  .story-section {
    padding: 50px 15px;
  }

  .hero-center h1 {
    font-size: 24px;
  }
}

/* Very Small Devices (max-width: 320px) */
@media (max-width: 320px) {
  
  .logo {
    font-size: 16px;
  }

  .nav-center ul {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .premium-title {
    font-size: 20px;
  }

  .premium-subtext {
    font-size: 13px;
  }

  .homes-header h2 {
    font-size: 22px;
  }

  .stats-left h2 {
    font-size: 26px;
  }

  .stat-card h3 {
    font-size: 28px;
  }

  .testimonial-header h2 {
    font-size: 22px;
  }

  .card.center {
    width: 95%;
    height: 250px;
  }

  .about-text {
    font-size: 20px;
  }

  .exp-card {
    width: 180px;
    height: 320px;
  }

  .emotion-content h2 {
    font-size: 22px;
  }

  .story-content h3 {
    font-size: 18px;
  }

  .hero-center h1 {
    font-size: 22px;
  }
}

/* NEW CARD STYLES */
.home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.home-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.home-features {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
}

.feature i {
  font-size: 14px;
  color:#c7a386;
}
/* ========================================
   FOOTER SECTION
   ======================================== */

/* FOOTER */
/* ==============================
   FOOTER
================================ */

.footer{
background:#f3f3f3;
padding:80px 60px 30px;
color:#b8893c;
}

/* container */

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:60px;
max-width:1400px;
margin:auto;
}

/* column */

.footer-col h3{
font-size:18px;
margin-bottom:20px;
}

.footer-title{
font-size:30px;
margin-bottom:20px;
}

.footer-text{
font-size:14px;
line-height:1.8;
max-width:320px;
}

/* list */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

.footer-col ul li:hover{
color:#000;
}

/* contact text */

.footer-col p{
font-size:14px;
line-height:1.7;
margin-bottom:8px;
}

/* divider */

.footer-divider{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
margin:70px 0 30px;
}

.form-actions{
display:flex;
flex-direction:column;
gap:10px;
margin-top:10px;
}

.whatsapp-btn,
.call-btn,
.brochure-btn{
text-align:center;
padding:12px;
border-radius:30px;
text-decoration:none;
font-size:14px;
}

.whatsapp-btn{
background:black;
color:white;
}

.call-btn{
background:#111;
color:white;
}

.brochure-btn{
background:#c7a386;
color:black;
}

.footer-divider .line{
flex:1;
height:1px;
background:#ddd;
}

.footer-logo img{
width:70px;
}

/* bottom */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.copyright{
font-size:14px;
}

.footer-social{
display:flex;
gap:20px;
font-size:18px;
cursor:pointer;
}

.footer-social i{
transition:0.3s;
}

.footer-social i:hover{
color:#000;
transform:translateY(-3px);
}

/* ==============================
   TABLET
================================ */

@media (max-width:1024px){

.footer{
padding:70px 40px 30px;
}

.footer-container{
grid-template-columns:1fr 1fr;
gap:40px;
}

.footer-text{
max-width:100%;
}

}

/* ==============================
   MOBILE
================================ */

@media (max-width:768px){

.footer{
padding:60px 25px 30px;
}

.footer-container{
grid-template-columns:1fr;
gap:35px;
}

.footer-title{
font-size:26px;
}

.footer-col h3{
font-size:17px;
}

.footer-text{
font-size:14px;
}

.footer-divider{
margin:50px 0 25px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

}

/* ==============================
   SMALL MOBILE
================================ */

@media (max-width:480px){

.footer{
padding:50px 20px 25px;
}

.footer-title{
font-size:24px;
}

.footer-text{
font-size:13px;
}

.footer-col ul li{
font-size:13px;
}

.copyright{
font-size:13px;
}

}
/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* ABOUT HERO SECTION */
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
  z-index: -1;
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 20px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ABOUT CONTAINER */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ABOUT STORY SECTION */
/* OVERVIEW SECTION */

.overview-section{
padding:100px 80px;
background:#f5f5f5;
}

.overview-container{
max-width:1300px;
margin:auto;
display:flex;
gap:70px;
align-items:center;
}

/* LEFT TEXT */

.overview-left{
flex:1;
}

.overview-tag{
font-size:12px;
letter-spacing:3px;
color:#777;
display:block;
margin-bottom:20px;
}

.overview-left h2{
font-size:46px;
line-height:1.2;
margin-bottom:25px;
font-weight:500;
color:#222;
}

.overview-left p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:18px;
max-width:520px;
}

/* RIGHT IMAGE */

.overview-right{
flex:1;
}

.overview-right img{
width:100%;
height:480px;
object-fit:cover;
border-radius:6px;
}

/* MOBILE */

@media(max-width:768px){

.overview-section{
padding:60px 20px;
}

.overview-container{
flex-direction:column;
gap:40px;
}

.overview-left h2{
font-size:32px;
}

.overview-right img{
height:320px;
}

}


/* BRAND TEXT SECTION */

.brand-section{
padding:120px 80px;
background:#f4f4f4;
}

.brand-container{
max-width:1200px;
margin:auto;
display:flex;
flex-direction:column;
gap:40px;
}

/* TITLE */

.brand-title{
display:flex;
align-items:center;
gap:25px;
cursor:pointer;
}

.brand-title span{
font-size:40px;
color:#cfcfcf;
}

.brand-title h2{
font-size:90px;
font-weight:500;
color:#d9d9d9;
transition:.4s;
}

/* hover */

.brand-title:hover h2{
color:#c7a386;
}

/* CONTENT */

.brand-content{
max-height:0;
overflow:hidden;
transition:.5s ease;
padding-left: 160px;
}

.brand-item.active .brand-content{
max-height:800px;
margin-top:30px;
}

/* vision mission grid */

.brand-grid{
display:flex;
gap:80px;
align-items:center;
}

.brand-icon img{
width:120px;
opacity:.7;
}

.brand-text{
font-size:24px;
line-height:1.7;
max-width:500px;
}

/* pillars */

.pillar-grid{
position:relative;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
margin-top:40px;
align-items:start;
}

.pillar-card img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
}

.pillar-card p{
margin-top:18px;
font-size:22px;
color:#222;
font-family:"Optima","Segoe UI",sans-serif;
}



/* BRAND SECTION */

.brand-content{
max-height:0;
overflow:hidden;
transition:0.5s ease;
}

.brand-item.active .brand-content{
max-height:900px;
margin-top:30px;
}

/* layout */

.brand-grid{
display:flex;
gap:60px;
align-items:center;
}

.brand-icon img{
width:120px;
opacity:0.7;
}

.brand-text{
font-size:22px;
line-height:1.6;
max-width:500px;
}

/* pillars */

.pillar-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:20px;
}

.pillar-card{
position:relative;
overflow:hidden;
border-radius:14px;
}

.pillar-card img{
width:100%;
height:360px;
object-fit:cover;
border-radius:14px;
}
.pillar-card:nth-child(2){
margin-top:120px;
}

/* dark gradient */
.pillar-card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:60%;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* text bottom */
.pillar-card p{
position:absolute;
bottom:20px;
left:20px;
color:white;
font-size:22px;
z-index:2;
}

.brand-content{
  max-height:0;
  overflow:hidden;
  transition:all .5s ease;
}

.brand-item.active .brand-content{
  max-height:1000px;
  margin-top:30px;
}

/* mobile */

@media(max-width:768px){

.brand-section{
padding:80px 20px;
}

.brand-title h2{
font-size:40px;
}

.brand-grid{
flex-direction:column;
gap:30px;
}

.pillar-grid{
grid-template-columns:1fr;
}

}
/* NAVBAR LINKS STYLING */
.nav-center ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.nav-center ul li a:hover {
  color: inherit;
}

/* Mobile navbar links */
@media (max-width: 768px) {
  .nav-center ul li a {
    color: black;
    text-decoration: none;
  }
  
  .nav-center ul li a:hover {
    color: black;
  }
}

.about-hero .navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;

padding:15px 60px;

background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
}

.project-gallery{
padding:100px 80px;
background:#f5f5f5;
}

.gallery-title{
font-size:40px;
margin-bottom:30px;
}

.gallery-tabs{
text-align:center;
font-size:22px;
margin-bottom:40px;
}

.tab{
cursor:pointer;
margin:0 10px;
color:#666;
}

.tab.active{
color:#c7a386;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:6px;
}

.gallery-tabs .tab{
cursor:pointer;
margin:0 10px;
color:#333;
}

.gallery-tabs .tab.active{
color:#c7a386;
font-weight:500;
}

.divider{
margin:0 10px;
color:#999;
pointer-events:none;
}

@media(max-width:768px){

.gallery-grid{
grid-template-columns:1fr;
}

.project-gallery{
padding:60px 20px;
}

}


.destinations{
padding:120px 80px;
background:#f5f5f5;
}

.destinations-container{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1.2fr 1fr;
gap:40px;
align-items:start;
}

/* TEXT */

.dest-text{
padding-top:20px;
}

.dest-tag{
font-size:12px;
letter-spacing:3px;
color:#888;
display:block;
margin-bottom:20px;
}

.dest-text h2{
font-size:48px;
line-height:1.2;
margin-bottom:25px;
font-weight:500;
}

.dest-text p{
color:#666;
line-height:1.7;
margin-bottom:30px;
}

.dest-btn{
background:#0c1f3f;
color:white;
border:none;
padding:14px 26px;
cursor:pointer;
letter-spacing:1px;
}

/* IMAGE CARD */

.dest-card{
position:relative;
overflow:hidden;
margin-bottom:35px;
cursor:pointer;
display:block;
}
.dest-card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:60%;
background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
pointer-events:none;
}

.dest-card img{
width:100%;
height:340px;
object-fit:cover;
display:block;
transition:transform 0.5s ease;
}

/* HOVER ZOOM */

.dest-card:hover img{
transform:scale(1.02);
}



.dest-card span::after{
content:"";
width:60px;
height:1px;
background:rgba(255,255,255,0.7);
}
.dest-card span{
position:absolute;
bottom:18px;
left:20px;

color:white;
font-size:14px;
letter-spacing:2px;
text-transform:uppercase;

z-index:2;
display:flex;
align-items:center;
gap:12px;
}

.dest-card span::after{
content:"";
width:60px;     /* line ki length */
height:1px;
background:#cfcfcf;
}

/* MIDDLE COLUMN */

.dest-middle .dest-card img{
height:420px;
}

/* RIGHT COLUMN */

.dest-right .dest-card img{
height:220px;
}

/* MOBILE */

@media(max-width:900px){

.destinations{
padding:60px 20px;
}

.destinations-container{
grid-template-columns:1fr;
gap:30px;
width:100%;
}

.dest-card img{
width:100%;
}

.dest-middle .dest-card img{
height:300px;
}

.dest-right .dest-card img{
height:250px;
}

}


.connect-section{
padding:80px;
background:#f5f5f5;
}

.connect-container{
background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
border-radius:28px;
padding:120px 80px;
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
overflow:hidden;
}

/* dark overlay */

.connect-container::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
}

.connect-left{
position:relative;
color:white;
max-width:420px;
z-index:2;
}

.connect-left h2{
font-size:60px;
margin-bottom:20px;
}

.connect-left p{
font-size:18px;
line-height:1.6;
margin-bottom:30px;
}

.contact-info p{
margin-bottom:8px;
font-size:16px;
}

/* FORM */

.connect-form{
position:relative;
z-index:2;
background:#f3f3f3;
padding:40px;
border-radius:20px;
width:420px;
box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.connect-form form{
display:flex;
flex-direction:column;
gap:12px;
}

.connect-form label{
font-size:14px;
}

.connect-form input,
.connect-form textarea{
padding:14px 16px;
border:none;
border-radius:30px;
background:#e8e8e8;
outline:none;
font-size:14px;
}

.connect-form textarea{
border-radius:16px;
height:100px;
resize:none;
}

.connect-form button{
margin-top:10px;
padding:14px;
border:none;
border-radius:30px;
background:linear-gradient(120deg,#000,#444);
color:white;
font-size:16px;
cursor:pointer;
}

.terms{
font-size:12px;
text-align:center;
margin-top:8px;
color:#666;
}

/* MOBILE */

@media(max-width:900px){

.connect-container{
flex-direction:column;
gap:40px;
padding:80px 30px;
}

.connect-left h2{
font-size:42px;
}

.connect-form{
width:100%;
}

}
/* BRAND CLICKABLE TITLES */
.brand-title.clickable {
  cursor: pointer;
  transition: color 0.3s ease;
}

.brand-title.clickable:hover {
  color: #c7a386;
}

.brand-title.clickable:hover h2 {
  color: #c7a386;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive for tabs */
@media (max-width: 768px) {
  .brand-tabs {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .brand-tab {
    font-size: 16px;
    padding: 8px 15px;
  }
}