

/* ROOT */
:root{
--primary:#1a2a44;
--gold:#c9a96e;
}
html, body {
  overflow-x: hidden;
}
/* GLOBAL */
body{font-family:'Poppins';padding-top:80px;scroll-behavior:smooth}

/* NAV */
.navbar{background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height: 76px;

}
.navbar .nav-link.active {
  color: #c9a96e !important;  /* gold color */
  font-weight: 600;
}
.navbar .nav-link:hover {
  color: #c9a96e;
}
.nav-link{color:var(--primary)!important}
.nav-link:hover,.nav-link:active,.nav-link:focus{color:var(--gold)!important}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  color: #fff;

  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('../img/about.png') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero .gold {
  color: #d4af37;
}

/* Stats Section */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-box {
  min-width: 220px;
  padding: 30px 20px;
  text-align: center;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-box h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #d4af37;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #fff;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box {
    width: 100%;
  }
}
/* =========================================
   PREMIUM AMENITIES
========================================= */
/* ===== AMENITIES SECTION ===== */



/* IMAGE */
.amenities-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* TAB ANIMATION */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 992px) {
    .amenities-sidebar {
        max-height: unset;
        overflow: visible;
        margin-bottom: 30px;
    }

    .amenities-content {
        padding: 25px;
    }

    .amenities-img {
        height: 250px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .amenities-title {
        font-size: 28px;
    }

    .amenities-tabs .nav-link {
        font-size: 14px;
        padding: 12px 15px;
    }

    .amenities-content h3 {
        font-size: 24px;
    }

    .amenities-content ul li {
        font-size: 14px;
    }
}

.gallery-main{
width:100%;
height:200px;
object-fit:cover;
border-radius:25px;
cursor:pointer;
transition:0.5s;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.gallery-main:hover{
transform:scale(1.02);
}

.gallery-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:20px;
}

.gallery-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:20px;
cursor:pointer;
transition:0.4s;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.gallery-grid img:hover{
transform:translateY(-5px);
}
/* ===================================
        GALLERY SECTION CSS
=================================== */

.gallery-section{
    background:#f8f5ef;
}

/* TITLE */

.gallery-subtitle{
    color:#c89b3c;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-heading h2{
    font-size:52px;
    font-weight:700;
    margin-top:10px;
    color:#111;
}

.gallery-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

/* TABS */

.gallery-tabs{
    gap:15px;
    flex-wrap:wrap;
}

.gallery-tabs .nav-link{
    border:none;
    background:#fff;
    color:#111;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.gallery-tabs .nav-link.active{
    background:#c89b3c;
    color:#fff;
}

/* CARD */

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.gallery-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.6s;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        transparent
    );
}

.gallery-overlay h4{
    color:#fff;
    margin:0;
    font-size:22px;
    font-weight:600;
}

/* HOVER */

.gallery-card:hover img{
    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:991px){

    .gallery-heading h2{
        font-size:34px;
    }

    .gallery-card img{
        height:250px;
    }

}

@media(max-width:991px){

    .gallery-title h2{
        font-size:34px;
    }

    .gallery-overlay{
        padding:20px;
    }

    .gallery-overlay h4{
        font-size:18px;
    }

}

/* POPUP */
#popupImage{
max-height:90vh;
width:100%;
object-fit:contain;
}

/* MOBILE */
@media(max-width:768px){

.premium-amenities{
padding:70px 0;
}

.premium-amenities h2{
font-size:34px;
}

.amenity-content{
padding-right:0;
margin-bottom:30px;
}

.amenity-content h3{
font-size:30px;
}

.gallery-main{
height:300px;
}

.gallery-grid img{
height:150px;
}

.amenity-tabs .nav-link{
padding:10px 18px;
font-size:14px;
}

}



.hero h1{
font-family:'Playfair Display';
font-size:80px;
}
.gold{color:var(--gold)}

/* SECTION */
.section{padding:80px 0}

/* COUNTER */
.counter{font-size:32px;color:var(--gold);font-weight:bold}

/* CARD */
.card{border:none;border-radius:12px;transition:.3s}
.card:hover{transform:translateY(-10px);box-shadow:0 10px 30px rgba(0,0,0,0.1)}

/* GALLERY */
.gallery img{transition:.4s;border-radius:10px}
.gallery img:hover{transform:scale(1.1)}

/* SPEC */
.spec{position:relative;overflow:hidden}
.spec img{width:100%}
.spec .overlay{
position:absolute;bottom:0;width:100%;
background:rgba(0,0,0,.7);color:#fff;padding:15px}

/* SECTION BG */
.contact-pro {
    background: #f5f3ef;
}

/* LEFT INFO */
.contact-info p {
    font-size: 15px;
    margin-bottom: 10px;
}
.contact-info i {
    color: #c9a96e;
    margin-right: 10px;
}

/* FORM BOX */
.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* INPUTS */
.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #c9a96e;
    outline: none;
}

/* BUTTON */
.btn-custom {
       background: #fff;
    border-color: #c9a96e !important;
    color: #c9a96e;
    border: 2px solid;
    padding: 12px;
    border-radius: 6px;
}
.btn-custom:hover {
    background: #c9a96e;
    color: #fff !important;
}

/* SECTION BG */
.brochure-section {
    background: linear-gradient(135deg, #c9a96e, #c9a96e);
    color: #fff;
}

/* TEXT */
.brochure-section h2 {
    color: #fff;
}

.brochure-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.brochure-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* FORM BOX */
.brochure-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUTS */
.brochure-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.brochure-box input:focus {
    border-color: #c9a96e;
    outline: none;
}

/* BUTTON */
.brochure-box .btn-custom {
    background: #c9a96e;
    color: #fff;
}

.brochure-box .btn-custom:hover {
    background: #c9a96e;
}
.footer {
    background: #343a40;
    color: #ccc;
    padding: 80px 0 30px;
}
.amenities-section {
    background: #f8f6f2;
}
/* TABS */
.nav-pills .nav-link {
    border-radius: 50px;
    margin: 5px;
    padding: 10px 20px;
    color: #1a2a44;
    border: 2px solid #ddd;
}

.nav-pills .nav-link.active {
       background: #c9a96e;
    color: #fff !important;
}

/* DETAILS */
.plan-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-details li {
    margin-bottom: 8px;
    font-size: 14px;
}
/* BOX */
.amenity-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.amenity-box i {
    font-size: 28px;
    color: #c9a96e;
    margin-bottom: 10px;
}

/* TEXT */
.amenity-box p {
    margin: 0;
    font-size: 14px;
}

/* HOVER */
.amenity-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.spec-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.spec-card i {
    font-size: 30px;
    color: #c9a96e;
    margin-bottom: 15px;
}

.spec-card h5 {
    margin-bottom: 15px;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
/* HEADINGS */
.footer h4, .footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

/* TEXT */
.footer p {
    font-size: 14px;
    line-height: 1.7;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #c9a96e;
    padding-left: 5px;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #343a40;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}
.social-icons a:hover {
    background: #c9a96e;
}

/* DIVIDER */
.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}

/* FLOAT */
.whatsapp,.call{
position:fixed;right:20px;padding:15px;border-radius:50%;color:#fff}
.whatsapp{bottom:20px;background:#25d366}
.call{bottom:80px;background:#007bff}

/* TOP */
.top-btn{position:fixed;bottom:140px;right:20px;display:none}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:38px}
.section{padding:50px 15px}
.btn{width:100%}
}

/* MAIN TABS */
.main-tabs .nav-link {
  border-radius:50px;
  margin:5px;
  padding:10px 25px;
  border:1px solid #ddd;
  color:#1a2a44;
}

.main-tabs .nav-link.active {
  background:#a3875a;
  color:#fff;
}

/* INNER TABS */
.inner-tabs .nav-link {
  border-radius:20px;
  margin:5px;
  padding:6px 15px;
  font-size:14px;
  border:2px solid #ddd;
}

.inner-tabs .nav-link.active {
  background:#c9a96e;
  color:#fff;
}

/* IMAGE */
.plan-img {
  border-radius:10px;
  transition:0.3s;
}
.plan-img:hover {
  transform:scale(1.05);
}

/* DETAILS */
.plan-details li {
  margin-bottom:8px;
}

.amenities-pro {
  background: #f5f3ef;
}

/* LEFT SIDE */
.amenities-left {
  background: #efebe4;
  padding: 40px 20px;
  height: 100%;
}

.amenities-left .nav-link {
  text-align: left;
  border: none;
  margin-bottom: 15px;
  color: #a3875a;
  font-size: 18px;
  background: transparent;
  transition: 0.3s;
}

.amenities-left .nav-link i {
  margin-right: 10px;
}

.amenities-left .nav-link.active {
  color: #c9a96e;
  font-weight: 600;
}

/* RIGHT SIDE */
.amenities-right {
  padding: 50px;
  background: #fff;
}

.amenities-right h2 {
  font-family: 'Playfair Display', serif;
  color: #c9a96e;
  font-size: 48px;
}

/* IMAGE */
.amenities-right img {
  border-radius: 15px;
}

/* MOBILE */
@media(max-width:768px){
  .amenities-left {
    display: flex;
    overflow-x: auto;
  }

  .amenities-left .nav {
    flex-direction: row;
  }

  .amenities-left .nav-link {
    white-space: nowrap;
    margin-right: 10px;
  }

  .amenities-right {
    padding: 20px;
  }

  .amenities-right h2 {
    font-size: 28px;
  }
}


/* HERO */
.contact-hero {
  height: 40vh;
  display:flex;
  align-items:center;
  color:#fff;
  background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url('../img/hero/FRONT VIEW_03.jpg') center/cover;
}

.contact-hero h1 {
  font-family:'Playfair Display';
  font-size:50px;
}

/* SECTION */
.section { padding:80px 0; }

/* INFO BOX */
.contact-info-box {
  background:#f8f6f2;
  padding:30px;
  border-radius:12px;
}

.contact-info-box p {
  margin-bottom:15px;
}

.contact-info-box i {
  color:#c9a96e;
  margin-right:10px;
}

/* FORM */
.contact-form {
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color:#c9a96e;
  outline:none;
}


/* MAP */
.map iframe {
  width:100%;
  height:350px;
  border:0;
  border-radius:12px;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { transform: scale(1); }
}

.whatsapp {
  animation: pulse 2s infinite;
}

.call {
  animation: pulse 2.5s infinite;
}
/* MOBILE */
@media(max-width:768px){
  .contact-hero h1{font-size:32px}
  .section{padding:50px 15px}
}


/* TABS */
.gallery-tabs .nav-link {
  border-radius: 50px;
  margin: 5px;
  padding: 8px 20px;
  border: 1px solid #ddd;
  color: #a3875a;
}

.gallery-tabs .nav-link.active {
  background: #a3875a;
  color: #fff;
}

/* GALLERY */
.gallery-box {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-box img {
  width: 100%;
  transition: 0.4s;
}

.gallery-box:hover img {
  transform: scale(1.1);
}








.sub-title{
    color:#c89b3c;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:48px;
    font-weight:700;
   
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* TABS */
/* ================= FLOOR SECTION ONLY ================= */

.floor-section{
    --gold:#c89b3c;
    --dark:#0f172a;
    --light:#f7f7f7;

    padding:90px 20px;
    background:var(--light);
    overflow:hidden;
    position:relative;
    z-index:1;
}

/* TITLE */

.floor-section .section-title{
    text-align:center;
    margin-bottom:50px;
}

.floor-section .section-title h2{
    font-size:48px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:15px;
}

.floor-section .section-title p{
    color:#666;
    font-size:18px;
    margin:auto;
}

/* ================= TABS ================= */

.floor-section .tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.floor-section .tab-btn{
    border:none;
    padding:14px 34px;
    border-radius:50px;
    background:#fff;
    color:#111;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.floor-section .tab-btn:hover{
    transform:translateY(-3px);
}

.floor-section .tab-btn.active{
    background:var(--gold);
    color:#fff;
}

/* ================= CONTENT ================= */

.floor-section .tab-content,
.floor-section .inner-content{
    display:none;
}

.floor-section .tab-content.active,
.floor-section .inner-content.active{
    display:block;
    animation:floorFade .5s ease;
}

@keyframes floorFade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= MASTER PLAN ================= */

.floor-section .master-plan-card{
    background:#fff;
    padding:30px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.floor-section .master-plan-card img{
    width:100%;
    max-width:900px;
    border-radius:20px;
    display:block;
    margin:auto;
}

/* ================= CAROUSEL ================= */

.floor-section .carousel-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
}

.floor-section .carousel{
    overflow:hidden;
    width:100%;
}

.floor-section .track{
    display:flex;
    gap:25px;
    transition:transform .6s ease;
    will-change:transform;
}

/* ================= CARD ================= */

.floor-section .card{
    min-width:calc(33.333% - 17px);
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    flex-shrink:0;
}

.floor-section .card:hover{
    transform:translateY(-10px);
}

.floor-section .card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.floor-section .card-content{
    padding:22px;
}

.floor-section .card-content p{
    margin-bottom:12px;
    color:#555;
    font-weight:500;
    font-size:15px;
}

.floor-section .card-content span{
    color:var(--gold);
    font-weight:700;
}

/* ================= BUTTONS ================= */

.floor-section .nav-btn{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:.3s ease;
    flex-shrink:0;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.floor-section .nav-btn:hover{
    transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .floor-section .card{
        min-width:calc(50% - 15px);
    }

    .floor-section .section-title h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .floor-section{
        padding:70px 15px;
    }

    .floor-section .card{
        min-width:100%;
    }

    .floor-section .section-title h2{
        font-size:30px;
    }

    .floor-section .tab-btn{
        padding:12px 22px;
        font-size:14px;
    }

    .floor-section .card img{
        height:auto;
    }

    .floor-section .nav-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .floor-section .carousel-wrapper{
        gap:8px;
    }
}


/* MOBILE */

@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .floor-content h3{
        font-size:24px;
    }

    .floor-tabs{
        flex-wrap:wrap;
    }

}
/* TABS */
.amenities-tabs .nav-link {
  border-radius:30px;
  padding:10px 25px;
  border:1px solid #ddd;
  color:#1a2a44;
  transition:0.3s;
}
.amenities-tabs .nav-link.active {
  background:#c9a96e;
  color:#fff;
}

/* IMAGE */
.amenity-img {
  border-radius:15px;
  transition:0.5s;
}
.amenity-img:hover {
  transform:scale(1.03);
}

/* TEXT */
.amenity-text p {
  margin:0;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* ICON */
.amenity-text i {
  color:#c9a96e;
  font-size:18px;
}

/* ANIMATION */
.amenity-img,
.amenity-text {
  opacity:0;
  transform:translateY(30px);
  transition:0.6s;
}

.tab-pane.active .amenity-img,
.tab-pane.active .amenity-text {
  opacity:1;
  transform:translateY(0);
}



.gallery-img{
    height:250px;
    width:100%;
    object-fit:cover;
    cursor:pointer;
    transition:0.3s
}

.gallery-img:hover{
    transform:scale(1.03);
}
.amenity-btn{
    background:#fff !important;
    border-color:2px #a3875a !important;
}
.amenity-btn.active{
    background:#a3875a !important;
    color:#fff;
}

/* ===================================
        FLOOR PLANS CSS
=================================== */

.floor-plans-section{
    background:#f8f5ef;
}

/* TITLE */

.sub-heading{
    color:#c89b3c;
    font-weight:600;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:15px;
    font-weight:700;
    color:#111;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:12px;
}

/* TABS */

.floor-tabs{
    gap:15px;
    flex-wrap:wrap;
}

.floor-tabs .nav-link{
    border:none;
    background:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    color:#111;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.floor-tabs .nav-link.active{
    background:#c89b3c;
    color:#fff;
}

/* CARD */

.floor-card,
.floor-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:.4s;
}

.floor-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.floor-img-box{
    position:relative;
    overflow:hidden;
}

.floor-img{
    width:100%;
    transition:.5s;
}

.floor-img:hover{
    transform:scale(1.03);
}

.floor-badge{
      position: absolute;
    bottom: 3px;
    left: 0px;
    font-size: 12px;
    background: #c89b3c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
}

/* CONTENT */



.floor-content h3,
.floor-content h4{
    font-weight:700;
   font-size:14px;
}

.floor-content p{
    color:#666;
    font-size:12px;
    line-height:1.8;
}

.plan-label{
    display:inline-block;
    background:#f4efe4;
    color:#c89b3c;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;
    font-weight:600;
}

/* FEATURES */

.floor-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.floor-features span{
    background:#f8f8f8;
    padding:12px 18px;
    border-radius:40px;
    font-size:12px;
    font-weight:500;
}

.floor-features i{
    color:#c89b3c;
    margin-right:8px;
}

/* MOBILE */

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .floor-content{
        padding:20px;
    }

}




/* ===================================
        FEATURES SECTION CSS
=================================== */

.features-section{
    background:#b67a22;
    position:relative;
    overflow:hidden;
}

/* TITLE */

.section-subtitle{
    color:#f7dd9a;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.feature-left h2{
    font-size:70px;
    line-height:1;
    font-weight:800;
    color:#f9df8f;
    margin:20px 0;
    text-transform:uppercase;
}

.feature-left p{
    color:#fff;
    line-height:1.9;
    margin-bottom:35px;
    max-width:550px;
}

/* FEATURES LIST */

.feature-list{
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:#fff;
}

.feature-item i{
    color:#f7dd9a;
    margin-top:5px;
}

/* MINI FEATURES */

.mini-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.mini-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    padding:20px;
    border-radius:20px;
    width:220px;
    transition:.4s;
}

.mini-box:hover{
    transform:translateY(-8px);
}

.mini-box i{
    font-size:35px;
    color:#f7dd9a;
    margin-bottom:15px;
}

.mini-box h5{
    color:#fff;
    font-size:18px;
    margin:0;
}

/* GALLERY */

.features-gallery{
    position:relative;
    min-height:650px;
}

.gallery-img{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.2);
}

.gallery-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-img:hover img{
    transform:scale(1.05);
}

/* IMAGE POSITIONS */

.large-img{
    width:80%;
    height:320px;
}

.small-img{
    width:45%;
    height:200px;
    position:absolute;
    bottom:40px;
    left:40px;
}

.side-img{
    width:50%;
    height:300px;
    position:absolute;
    top:120px;
    right:0;
}

/* ICON BOXES */

.icon-feature-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.icon-feature-box:hover{
    transform:translateY(-10px);
}

.icon-feature-box i{
    font-size:45px;
    color:#f7dd9a;
    margin-bottom:20px;
}

.icon-feature-box h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.icon-feature-box p{
    color:#f1f1f1;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:991px){

    .feature-left h2{
        font-size:42px;
    }

    .features-gallery{
        min-height:auto;
        margin-top:40px;
    }

    .large-img,
    .small-img,
    .side-img{
        position:relative;
        width:100%;
        height:auto;
        margin-bottom:20px;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
    }

}

/* FEATURES GRID */
.floor-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:40px;
}

/* FEATURE BOX */
.feature-item{
  background:#fff;
  border-radius:20px;
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:15px;
  border:1px solid #eee;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

/* HOVER EFFECT */
.feature-item::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background:#c9a96e;
  transition:0.4s;
}

.feature-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  border-color:#c9a96e;
}

/* ICON */
.feature-item i{
  width:55px;
  height:55px;
  min-width:55px;
  border-radius:50%;
  background:linear-gradient(135deg,#c9a96e,#b88c4d);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

/* TEXT */
.feature-item span{
  font-size:16px;
  font-weight:600;
  color:#1a2a44;
  line-height:1.4;
}

/* MOBILE */
@media(max-width:768px){

  .floor-content{
    padding-left:0;
    margin-top:30px;
  }

  .floor-content h3{
    font-size:30px;
  }

  .floor-content p{
    font-size:15px;
    line-height:1.8;
  }

  .floor-features{
    grid-template-columns:1fr;
  }

}

/* =========================================
   PREMIUM SPECIFICATION SECTION
========================================= */

.specification-premium{
  background:#f8f6f2;
  padding:100px 0;
}

/* TITLE */
.spec-subtitle{
  color:#c9a96e;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

.specification-premium h2{
  font-size:52px;
  font-family:'Playfair Display',serif;
  color:#1a2a44;
  margin-bottom:15px;
}

.spec-desc{
  max-width:750px;
  margin:auto;
  color:#666;
  line-height:1.9;
  font-size:16px;
}

/* CARD */
.spec-premium-card{
  background:#fff;
  border-radius:28px;
  padding:40px 35px;
  height:100%;
  position:relative;
  overflow:hidden;
  transition:0.5s ease;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* TOP BORDER EFFECT */
.spec-premium-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:#c9a96e;
  transform:scaleX(0);
  transition:0.5s;
}

.spec-premium-card:hover::before{
  transform:scaleX(1);
}

.spec-premium-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* ICON */
.spec-icon{
  width:75px;
  height:75px;
  border-radius:20px;
  background:linear-gradient(135deg,#c9a96e,#b88c4d);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  box-shadow:0 10px 25px rgba(201,169,110,0.3);
}

.spec-icon i{
  color:#fff;
  font-size:28px;
}

/* TITLE */
.spec-premium-card h4{
  font-size:28px;
  font-family:'Playfair Display',serif;
  color:#1a2a44;
  margin-bottom:25px;
  position:relative;
}

/* LINE */
.spec-premium-card h4::after{
  content:'';
  width:60px;
  height:3px;
  background:#c9a96e;
  display:block;
  margin-top:12px;
  border-radius:10px;
}

/* LIST */
.spec-premium-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.spec-premium-card ul li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  color:#555;
  line-height:1.8;
  font-size:15px;
}

/* CUSTOM BULLET */
.spec-premium-card ul li::before{
  content:'✔';
  position:absolute;
  left:0;
  top:0;
  color:#c9a96e;
  font-size:14px;
  font-weight:bold;
}

/* MOBILE */
@media(max-width:768px){

  .specification-premium{
    padding:70px 0;
  }

  .specification-premium h2{
    font-size:34px;
  }

  .spec-desc{
    font-size:15px;
    line-height:1.8;
  }

  .spec-premium-card{
    padding:30px 25px;
  }

  .spec-premium-card h4{
    font-size:24px;
  }

}

/* =========================================
   PREMIUM SPECIFICATIONS SECTION
========================================= */

.specification-premium{
background:#f8f6f2;
padding:100px 0;
position:relative;
overflow:hidden;
}

/* TITLE */
.spec-subtitle{
color:#c9a96e;
text-transform:uppercase;
letter-spacing:4px;
font-size:14px;
font-weight:600;
margin-bottom:12px;
}

.specification-premium h2{
font-size:54px;
font-family:'Playfair Display',serif;
color:#1a2a44;
margin-bottom:18px;
font-weight:700;
line-height:1.3;
}

.spec-desc{
max-width:760px;
margin:auto;
color:#666;
line-height:2;
font-size:16px;
}

/* GRID SPACE */
.specification-premium .row{
margin-top:60px;
}

/* CARD */
.spec-card-premium{
background:#fff;
padding:38px 32px;
border-radius:28px;
height:100%;
position:relative;
overflow:hidden;
transition:0.5s ease;
box-shadow:0 10px 35px rgba(0,0,0,0.06);
border:1px solid rgba(0,0,0,0.03);
}

/* TOP LINE */
.spec-card-premium::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#c9a96e,#b88c4d);
transform:scaleX(0);
transform-origin:left;
transition:0.5s;
}

.spec-card-premium:hover::before{
transform:scaleX(1);
}

/* HOVER */
.spec-card-premium:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* ICON */
.spec-icon{
width:80px;
height:80px;
border-radius:22px;
background:linear-gradient(135deg,#c9a96e,#b88c4d);
display:flex;
align-items:center;
justify-content:center;
margin-bottom:28px;
box-shadow:0 12px 30px rgba(201,169,110,0.35);
}

.spec-icon i{
color:#fff;
font-size:30px;
}

/* TITLE */
.spec-card-premium h4{
font-size:28px;
font-family:'Playfair Display',serif;
color:#1a2a44;
margin-bottom:25px;
font-weight:700;
position:relative;
}

/* GOLD LINE */
.spec-card-premium h4::after{
content:'';
width:65px;
height:3px;
background:#c9a96e;
display:block;
margin-top:12px;
border-radius:10px;
}

/* LIST */
.spec-card-premium ul{
list-style:none;
padding:0;
margin:0;
}

/* LIST ITEM */
.spec-card-premium ul li{
position:relative;
padding-left:30px;
margin-bottom:16px;
color:#555;
font-size:15px;
line-height:1.9;
transition:0.3s;
}

/* BULLET */
.spec-card-premium ul li::before{
content:'✔';
position:absolute;
left:0;
top:0;
color:#c9a96e;
font-weight:bold;
font-size:15px;
}

/* HOVER TEXT */
.spec-card-premium:hover ul li{
color:#333;
}

/* TABLET */
@media(max-width:991px){

.specification-premium h2{
font-size:42px;
}

.spec-card-premium{
padding:32px 26px;
}

}

/* MOBILE */
@media(max-width:768px){

.specification-premium{
padding:70px 0;
}

.specification-premium h2{
font-size:32px;
}

.spec-desc{
font-size:15px;
line-height:1.8;
}

.spec-card-premium{
padding:28px 22px;
border-radius:22px;
}

.spec-icon{
width:65px;
height:65px;
border-radius:18px;
}

.spec-icon i{
font-size:24px;
}

.spec-card-premium h4{
font-size:24px;
}

.spec-card-premium ul li{
font-size:14px;
line-height:1.8;
}

}

/* MAIN TABS */
.floor-main-tabs .nav-link{
    background:#ffffff !important;
    color:#111 !important;
    border:none !important;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.4s;
}

.floor-main-tabs .nav-link.active{
    background:#c89b3c !important;
    color:#fff !important;
}

.floor-main-tabs .nav-link:hover{
    background:#c89b3c !important;
    color:#fff !important;
}

/* SUB TABS (2BHK / 3BHK) */
.floor-sub-tabs .nav-link{
    background:#ffffff !important;
    color:#111 !important;
    border:none !important;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.4s;
}
.sub-tab-scroll{
        align-items: center;
    margin: auto;
    width: fit-content;
}
.floor-sub-tabs .nav-link.active{
    background:#c89b3c !important;
    color:#fff !important;
}

.floor-sub-tabs .nav-link:hover{
    background:#c89b3c !important;
    color:#fff !important;
}


.amenities-section{
    background:#f6f6f6;
    padding:100px 0;
}

.amenities-title{
    font-size:55px;
    color:#c89b3c;
    font-weight:500;
}

/* LEFT SIDEBAR */
.amenities-sidebar{
    max-height:600px;
    overflow-y:auto;
    padding-right:15px;
}

.amenities-tabs .nav-link{
    display:flex;
    align-items:center;
    gap:15px;
    width:100%;
    background:transparent !important;
    border:none;
    padding:22px 15px;
    font-size:20px;
    color:#b58c4c !important;
    text-align:left;
    border-bottom:1px solid #eee;
}

.amenities-tabs .nav-link i{
    font-size:35px;
}

.amenities-tabs .nav-link.active{
    background:#fff !important;
    color:#c89b3c !important;
    border-left:5px solid #c89b3c;
}

/* RIGHT CONTENT */
.amenities-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
}

.amenities-content h3{
    font-size:45px;
    color:#c89b3c;
    font-weight:400;
    margin-bottom:25px;
}

.amenities-content ul{
    padding-left:20px;
}

.amenities-content li{
    font-size:22px;
    line-height:1.8;
    color:#555;
}

.amenities-img{
    width:100%;
    border-radius:30px;
}

/* MOBILE */
@media(max-width:768px){
    .amenities-title{
        font-size:32px;
    }

    .amenities-tabs .nav-link{
        font-size:16px;
        padding:15px;
    }

    .amenities-tabs .nav-link i{
        font-size:24px;
    }

    .amenities-content{
        padding:25px;
        margin-top:20px;
    }

    .amenities-content h3{
        font-size:32px;
    }

    .amenities-content li{
        font-size:16px;
    }
}

.amenities-section{
    background:#f6f6f6;
    padding:100px 0;
}

.amenities-title{
    font-size:55px;
    color:#c89b3c;
    font-weight:500;
}

/* LEFT SIDEBAR */
.amenities-sidebar{
    max-height:600px;
    overflow-y:auto;
    padding-right:15px;
}

.amenities-tabs .nav-link{
    display:flex;
    align-items:center;
    gap:15px;
    width:100%;
    background:transparent !important;
    border:none;
    padding:22px 15px;
    font-size:20px;
    color:#b58c4c !important;
    text-align:left;
    border-bottom:1px solid #eee;
}

.amenities-tabs .nav-link i{
    font-size:35px;
}

.amenities-tabs .nav-link.active{
    background:#fff !important;
    color:#c89b3c !important;
    border-left:5px solid #c89b3c;
}

/* RIGHT CONTENT */
.amenities-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
}

.amenities-content h3{
    font-size:60px;
    color:#c89b3c;
    font-weight:400;
    margin-bottom:25px;
}

.amenities-content ul{
    padding-left:20px;
}

.amenities-content li{
    font-size:22px;
    line-height:1.8;
    color:#555;
}

.amenities-img{
    width:100%;
    border-radius:30px;
}

/* MOBILE */
@media(max-width:768px){
    .amenities-title{
        font-size:32px;
    }

    .amenities-tabs .nav-link{
        font-size:16px;
        padding:15px;
    }

    .amenities-tabs .nav-link i{
        font-size:24px;
    }

    .amenities-content{
        padding:25px;
        margin-top:20px;
    }

    .amenities-content h3{
        font-size:32px;
    }

    .amenities-content li{
        font-size:16px;
    }
}

.project-highlights{
    width:100%;
    padding:70px 5%;
    background:#f4efeb;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    position:relative;
}

.highlight-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    transition:0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.highlight-box:hover{
    transform:translateY(-5px);
}

.icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#6d4c4c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    flex-shrink:0;
}

.highlight-box h2{
    font-size:42px;
    color:#6d4c4c;
    margin-bottom:5px;
    font-weight:700;
    line-height:1;
}

.highlight-box p{
    font-size:20px;
    color:#555;
    margin:0;
    line-height:1.4;
}

@media(max-width:768px){

    .project-highlights{
        padding:50px 20px;
    }

    .highlight-box{
        padding:20px;
    }

    .highlight-box h2{
        font-size:34px;
    }

    .highlight-box p{
        font-size:18px;
    }

    .icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

}

.floor-section{
  padding:50px 20px;
  text-align:center;
  background:#f7f7f7;
}

/* TITLE */
.floor-section h2{
  font-size:32px;
  margin-bottom:20px;
}

/* ONLY FLOOR SECTION TABS */
.floor-section .tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0;
}

.floor-section .tab-btn{
  padding:10px 22px;
  border:none;
  border-radius:25px;
  background:#d4af37;
  color:#fff;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.floor-section .tab-btn.active{
  background:#000;
}

/* CONTENT */
.floor-section .tab-content,
.floor-section .inner-content{
  display:none;
}

.floor-section .tab-content.active,
.floor-section .inner-content.active{
  display:block;
}

/* CAROUSEL */
.floor-section .carousel{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  margin-top:20px;
}

/* VIEWPORT */
.floor-section .viewport{
  width:100%;
  max-width:1100px;
  overflow:hidden;
}

/* TRACK */
.floor-section .track{
  display:flex;
  transition:transform 0.5s ease;
}

/* CARD */
.floor-section .card{
  flex:0 0 25%;
  padding:10px;
  box-sizing:border-box;
}

.floor-section .card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
}

.floor-section .card p{
  margin-top:8px;
  font-size:14px;
  color:#444;
}

/* ARROWS */
.floor-section .carousel button{
  background:#d4af37;
  border:none;
  color:#fff;
  width:45px;
  height:45px;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .floor-section .card{ flex:0 0 33.33%; }
}

@media(max-width:768px){
  .floor-section .card{ flex:0 0 50%; }
}

@media(max-width:480px){
  .floor-section .card{ flex:0 0 100%; }
}