/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    margin: auto;
}

/* ================= NAVBAR ================= */
/* HEADER FIX */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;              /* 👈 FIX HEIGHT */
    z-index: 999;

    display: flex;
    align-items: center;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;  /* 👈 smooth effect */
}
/* NAVBAR (HEIGHT KAM) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;   /* 👈 height kam */
}

/* LOGO (BADA + CENTERED) */
.logo img {
    height: 75px;   /* 👈 bada logo */
    width: auto;
    object-fit: contain;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

/* LINKS */
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    font-size: 14px;  /* 👈 thoda compact */
}

/* HOVER LINE */
.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c19b76;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}
/* ================= HERO ================= */
.hero-area {
    margin-top: 80px;
}

/* SLIDER WRAPPER */
.hero-slides {
    width: 100%;
    height: 100vh;
}

/* SINGLE SLIDE */
.single-hero-slide {
    position: relative;
    height: 100vh;
}

/* BACKGROUND IMAGE (BEST FIX) */
.bg-img {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

/* TITLE */
.hero-content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* SUBTEXT */
.hero-content p {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 18px;
}

/* BUTTON */
.hero-btn {
    background: #c19b76;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #000;
}

/* ================= CAROUSEL ================= */

/* ARROWS */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    padding: 12px 16px !important;
    border-radius: 4px;
    font-size: 18px;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #c19b76 !important;
}

/* POSITION */
.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

/* REMOVE DOTS */
.owl-dots {
    display: none !important;
}

/* ================= ABOUT ================= */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.about-section p {
    color: #777;
}

/* ================= FOOTER ================= */
.footer-area {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .bg-img {
        height: 60vh;
    }
}
/* IMAGE FULL */
.carousel-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
}

/* TEXT CENTER (STATIC) */
.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.carousel-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.carousel-content p {
    margin: 15px 0;
}

/* BUTTON */
.hero-btn {
    background: #c19b76;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* 🔥 SMOOTH SLIDE (NO FADE) */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}


/* SCROLL PE SOLID NAVBAR */
.header-area.scrolled {
    background: #000;
    height: 70px;
}


/* BACKDROP */
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CARD */
.popup-card {
    width: 750px;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: popupFade 0.4s ease;
}

/* LEFT */
.popup-left {
    width: 35%;
    background: #28a745;
    color: #fff;
    padding: 30px;
}

.popup-left h3 {
    margin-bottom: 20px;
}

.promise {
    margin: 15px 0;
    font-size: 15px;
}

/* RIGHT */
.popup-right {
    width: 65%;
    background: #fff;
    padding: 30px;
    position: relative;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* TITLE */
.popup-right h2 {
    margin-bottom: 20px;
}

/* INPUT */
.popup-right input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

/* BUTTON */
.popup-right button {
    width: 100%;
    padding: 14px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.popup-right button:hover {
    background: #000;
}

/* CALL */
.popup-call {
    margin-top: 20px;
    background: #28a745;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* SECTION */
.about-premium {
    padding: 120px 0;
    background: linear-gradient(to right, #000, #111);
    color: #fff;
    overflow: hidden;
}

/* WRAPPER */
.about-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    transition: 0.6s;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-text h5 {
    color: #c19b76;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    margin-bottom: 30px;
}

/* CARDS */
.about-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.about-card:hover {
    background: #c19b76;
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 28px;
}

.about-card span {
    font-size: 14px;
}

/* BUTTON */
.about-btn {
    background: #c19b76;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fff;
    color: #000;
}

/* WHY SECTION */
.why-choose {
    padding: 100px 0;
    background: #0f0f0f;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #c19b76, #8a6d4f);
}

/* ICON */
.icon {
    margin-bottom: 20px;
}

/* COUNTERS */
.counter-section {
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter-box h2 {
    font-size: 40px;
    color: #c19b76;
}




/* ================= RESPONSIVE ================= */

/* 📱 MOBILE (max 768px) */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* CAROUSEL */
    .carousel-bg {
        height: 70vh;   /* mobile pe height kam */
        padding: 0 15px;
    }

    .carousel-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .carousel-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* ABOUT / WHY SECTION */
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 25px;
    }

    .section-title {
        font-size: 26px;
    }

    /* COUNTERS */
    .counter-section {
        flex-direction: column;
        gap: 20px;
    }

    .counter-box h2 {
        font-size: 28px;
    }
}

/* 📲 TABLET (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .carousel-bg {
        height: 80vh;
    }

    .carousel-content h1 {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-section {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* 💻 LARGE SCREEN FIX */
@media (min-width: 1400px) {
    .carousel-content h1 {
        font-size: 70px;
    }
}
/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .navbar {
        padding: 10px 15px;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HIDE MENU */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        text-align: center;
        padding: 20px 0;
    }

    /* SHOW MENU WHEN ACTIVE */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .logo img {
        height: 45px;
    }
}
/* ================= ABOUT RESPONSIVE FIX ================= */

.about-section {
    padding: 100px 0;
}

.about-content {
    max-width: 600px;
}

/* TEXT FIX */
.about-content h1 {
    font-size: 48px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* COUNTER BOX */
.counter-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* MOBILE FIX 🔥 */
@media (max-width: 768px) {

    .about-section {
        padding: 60px 20px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-content h1 {
        font-size: 28px;   /* 🔥 main fix */
    }

    .about-content p {
        font-size: 14px;
    }

    /* 🔥 COUNTER STACK */
    .counter-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .counter-box {
        width: 80%;
    }

    /* BUTTON CENTER */
    .about-btn {
        display: inline-block;
        margin-top: 20px;
    }
}
body {
    overflow-x: hidden;
}
/* ===== FIX OVERLAY CONFLICT ===== */
.hero-area .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

/* ===== NAVBAR FIX (NO CONFLICT) ===== */
.header-area {
    height: 80px;
}

.header-area.scrolled {
    height: 70px;
}

/* ===== ABOUT SECTION FORCE FIX ===== */
.about-section,
.about-premium {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== ABOUT PREMIUM FIX ===== */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;   /* 🔥 IMPORTANT */
    align-items: center;
    justify-content: center;
}

/* IMAGE FIX */
.about-image {
    flex: 1 1 45%;
}

/* TEXT FIX */
.about-text {
    flex: 1 1 45%;
}

/* ===== MOBILE FIX 🔥 ===== */
@media (max-width: 768px) {

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

    .about-text h1 {
        font-size: 26px;
    }

    .about-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        width: 80%;
    }
}

/* ===== Z-INDEX FIX (HIDDEN ISSUE) ===== */
.about-section,
.about-premium {
    position: relative;
    z-index: 1;
}

/* ===== EXTRA SAFETY (SCROLL ISSUE FIX) ===== */
.hero-area {
    position: relative;
    z-index: 0;
} 

/* ================= PROPERTIES ================= */

.properties-section {
    background: #000;
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 60px;
}

/* GRID */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.property-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

/* IMAGE */
.property-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* TAG */
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 3px;
}

/* PRICE */
.price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #c19b76;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
}

/* CONTENT */
.property-content {
    padding: 20px;
    color: #fff;
}

.property-content h3 {
    margin-bottom: 10px;
}

.location {
    color: #c19b76;
    font-size: 14px;
    margin-bottom: 10px;
}

.desc {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* INFO */
.property-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #aaa;
}

/* BUTTON */
.view-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #c19b76;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #fff;
    color: #000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}.left-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3b3b;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255,0,0,0.5);
    animation: pulse 1.5s infinite;
}

/* 🔥 PULSE EFFECT */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* OVERLAY */
.lead-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* BOX */
.lead-box {
    width: 850px;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20,20,20,0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    animation: popupFade 0.5s ease;
    position: relative;   /* 👈 MOST IMPORTANT */
}

/* ANIMATION */
@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* LEFT */
.lead-left {
    width: 50%;
    background: url('/static/assets/img/property.jpg') center/cover;
    position: relative;
}

.lead-overlay-dark {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), #000);
}

.lead-left-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    color: #fff;
}

.lead-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.lead-points span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

/* RIGHT */
.lead-right {
    width: 50%;
    padding: 40px;
    color: #fff;
}

.lead-right h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.lead-sub {
    font-size: 14px;
    margin-bottom: 20px;
    color: #bbb;
}

/* INPUT */
.lead-right input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: #1e1e1e;
    color: #fff;
}

/* BUTTON */
.lead-right button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #c19b76, #a87b54);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.lead-right button:hover {
    transform: scale(1.05);
}

/* CLOSE */
.lead-close {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* MOBILE */
@media(max-width:768px){
    .lead-box {
        flex-direction: column;
        width: 90%;
    }

    .lead-left {
        height: 200px;
        width: 100%;
    }

    .lead-right {
        width: 100%;
        padding: 20px;
    }
}@media (max-width: 768px) {

    .lead-box {
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .lead-close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
/* ================= CONTACT ================= */

.contact-section {
    background: #000;
    padding: 100px 20px;
    color: #fff;
}

.contact-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

/* WRAPPER */
.contact-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 30px;
}

.info-box {
    margin-bottom: 15px;
    font-size: 16px;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    background: #111;
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    margin-bottom: 20px;
}

/* INPUT */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #1e1e1e;
    color: #fff;
}

/* TEXTAREA */
.contact-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #c19b76, #a87b54);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-title {
        font-size: 28px;
    }
}
/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    padding: 10px 0;
    border-radius: 6px;
    min-width: 180px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ITEMS */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER */
.dropdown-menu li a:hover {
    background: #c19b76;
    color: #000;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* PULSE ANIMATION */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* IMAGE */
.wa-btn img {
    width: 20px;
    height: 20px;
}

/* HOVER */
.wa-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* equal width */
.view-btn,
.wa-btn {
    flex: 1;
    text-align: center;
}.wa-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .wa-float img {
        width: 24px;
    }
}/* FLOATING WHATSAPP */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;

    transition: 0.3s;
}

/* ICON */
.wa-float img {
    width: 28px;
    height: 28px;
}

/* HOVER */
.wa-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}/* SELECT + TEXTAREA */
.lead-right select,
.lead-right textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 14px;
}

.lead-right textarea {
    height: 80px;
    resize: none;
}/* DETAIL PAGE */
/* ===== GLOBAL ===== */
body {
    background: #0b0b0b;
    font-family: 'Poppins', sans-serif;
    color: #eee;
}

/* ===== TITLE ===== */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 40px 0 30px;
    color: #fff;
}

/* ===== MAIN LAYOUT ===== */
.property-main {
    display: flex;
    gap: 50px;
    padding: 40px;
}

/* ===== LEFT IMAGE ===== */
.property-left {
    flex: 1.6;
    position: relative;
}

.property-left img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.property-left {
    position: relative;
}

.property-left::after {
    content: "FEATURED";
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c19b76;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* ===== RIGHT SIDE ===== */
.property-right {
    flex: 1;
}

/* TITLE RIGHT */
.property-right .title {
    font-size: 32px;
    margin-bottom: 10px;
}

/* LOCATION */
.location {
    color: #aaa;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 28px;
    color: #c19b76;
    margin-bottom: 20px;
}

/* FEATURES */
.features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.features span {
    background: rgba(255,255,255,0.05);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== ENQUIRY BOX ===== */
.enquiry-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.enquiry-box h3 {
    margin-bottom: 15px;
}

/* INPUT */
.enquiry-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    background: #111;
    color: #fff;
}

/* BUTTON */
.enquiry-box button {
    width: 100%;
    background: linear-gradient(135deg, #c19b76, #a67c52);
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193,155,118,0.4);
}

/* WHATSAPP */
.wa-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    background: #25D366;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

/* FLOAT */
.wa-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: #fff;
    padding: 16px;
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
}

/* ===== DESCRIPTION ===== */
.desc-section {
    margin: 40px;
    background: #111;
    padding: 30px;
    border-radius: 15px;
}

.desc-section h3 {
    margin-bottom: 15px;
}

.desc-text {
    color: #bbb;
    line-height: 1.8;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .property-main {
        flex-direction: column;
        padding: 20px;
    }

    .property-left img {
        height: 260px;
    }
}.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}.property-card .price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #c19b76;
    padding: 8px 15px;
    color: #000000 !important;   /* 🔥 FIX */
    font-weight: bold;
    border-radius: 5px;
    z-index: 2;               /* 🔥 IMPORTANT */
}/* DETAIL PAGE PRICE FIX */
.property-right .price {
    position: static !important;
    background: none !important;
    padding: 0 !important;
    font-size: 30px;
    color: #c19b76;
    margin: 10px 0 20px;
}/* ================= SERVICES ================= */

.services-section {
    padding: 100px 20px;
    background: #0b0b0b;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 42px;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* GRID */
/* SECTION */
.services-section {
    background: #0b0b0b;
    padding: 100px 20px;
}

/* TITLE */
.section-title {
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin-bottom: 60px;
}

/* GROUP */
.service-group {
    margin-bottom: 70px;
}

.service-group h2 {
    color: #c19b76;
    margin-bottom: 25px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
/* 🔥 MOBILE SINGLE COLUMN FIX */
@media (max-width: 768px) {

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;  /* 👈 SINGLE CARD */
        gap: 20px;
    }

}@media (max-width: 768px) {

    .services-grid {
        display: flex !important;
        flex-direction: column !important;  /* 👈 ek ke niche ek */
        gap: 20px;
    }

}.service-card {
    width: 100% !important;
}
/* CARD */
.service-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: 0.3s;
}

/* IMAGE FIX */
.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TITLE */
.service-card h3 {
    color: #fff;
    font-size: 18px;
    margin: 15px;
}

/* DESC */
.service-card p {
    color: #aaa;
    font-size: 14px;
    margin: 0 15px;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media(max-width:992px){
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .services-grid {
        grid-template-columns: 1fr;
    }
}@media(max-width:992px){
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .services-grid {
        grid-template-columns: 1fr;
    }
}.services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}/* FOOTER */
.premium-footer {
    background: #0b0b0b;
    color: #ccc;
    padding-top: 60px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* HEADINGS */
.footer-col h2,
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a i {
    margin-right: 8px;
}

.footer-col ul li a:hover {
    color: #c19b76;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
}

/* ICON STYLE */
.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

/* COLORS */
.social-icons .wa:hover {
    background: #25D366;
}

.social-icons .insta:hover {
    background: #E1306C;
}

.social-icons .fb:hover {
    background: #1877F2;
}

.social-icons .google:hover {
    background: #DB4437;
}

/* HOVER */
.social-icons a:hover {
    transform: scale(1.1);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.dev-link {
    color: #c19b76;
    text-decoration: none;
    font-weight: 500;
}

.dev-link:hover {
    text-decoration: underline;
}/* NAVBAR FLEX */
/* 🔥 GLASS NAVBAR */
.glass-navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    transition: 0.3s;
}

/* LOGO */
.glass-navbar .navbar-brand img {
    height: 50px;
}

/* LINKS */
.glass-navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

/* HOVER GOLD LINE */
.glass-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c19b76;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.glass-navbar .nav-link:hover::after {
    width: 100%;
}

/* CONTACT BUTTON */
.contact-btn {
    border: 1px solid #c19b76;
    padding: 6px 15px;
    border-radius: 30px;
}

.contact-btn:hover {
    background: #c19b76;
    color: #000 !important;
}

/* DROPDOWN GLASS */
.glass-dropdown {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: none;
}

.glass-dropdown .dropdown-item {
    color: #fff;
}

.glass-dropdown .dropdown-item:hover {
    background: #c19b76;
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .navbar-collapse {
        background: rgba(0,0,0,0.9);
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }
}/* 🔥 GLASS NAVBAR */
.glass-navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    transition: 0.3s;
}

/* LOGO */
.glass-navbar .navbar-brand img {
    height: 50px;
}

/* LINKS */
.glass-navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

/* HOVER GOLD LINE */
.glass-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #c19b76;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.glass-navbar .nav-link:hover::after {
    width: 100%;
}

/* CONTACT BUTTON */
.contact-btn {
    border: 1px solid #c19b76;
    padding: 6px 15px;
    border-radius: 30px;
}

.contact-btn:hover {
    background: #c19b76;
    color: #000 !important;
}

/* DROPDOWN GLASS */
.glass-dropdown {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: none;
}

.glass-dropdown .dropdown-item {
    color: #fff;
}

.glass-dropdown .dropdown-item:hover {
    background: #c19b76;
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .navbar-collapse {
        background: rgba(0,0,0,0.9);
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }
}