#header .navbar-brand img {
    max-height: 30px;
    height: auto;
}


/* DESKTOP STICKY FORM */

.sticky-form {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    z-index: 9999;
    overflow: hidden;
}

.form-header {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 18px;
}

.form-header h4 {
    margin: 0;
    font-size: 22px;
}

.form-header p {
    margin: 8px 0 0;
    font-size: 13px;
}

.sticky-form form {
    padding: 20px;
}

.sticky-form input[type="text"],
.sticky-form input[type="email"],
.sticky-form input[type="tel"],
.popup-card input[type="text"],
.popup-card input[type="email"],
.popup-card input[type="tel"] {
    width: 100%;
    height: 45px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    margin: 10px 0 15px;
}

.terms input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.sticky-form button {
    width: 100%;
    height: 48px;
    border: none;
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE POPUP */

.mobile-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.popup-card {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    animation: popupshow .5s ease;
}

@keyframes popupshow {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-card h4 {
    text-align: center;
    margin-bottom: 10px;
}

.popup-card p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.popup-card input {
    width: 100%;
    height: 45px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
}

.popup-card button {
    width: 100%;
    height: 45px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .desktop-form {
        display: none;
    }

    .mobile-popup.show {
        display: flex;
    }
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-slider .content-area {
    position: relative;
    z-index: 2;
    padding-top: 80px;

}

.container-black {
    color: #fff;
}

.container-black h2 {
    color: #fff;
}

.container-black p {
    color: #fff;
}

@media(max-width:768px) {

    .hero-slider {
        min-height: 700px;
    }

    .hero-slider .content-area {
        padding-top: 24px;
    }

}

.property-card {
    background: #fff;
    max-width: 510px;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8e6;
    color: #b8860b;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #f0d98a;
}

.property-card h2 {
    font-size: 42px;
    margin: 20px 0 10px;
    color: #222;
    line-height: 1.2;
}

.property-price {
    font-size: 28px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 25px;
}

.property-price span {
    font-size: 15px;
    color: #666;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-box {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: .3s;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.feature-box i {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-box h5 {
    margin-bottom: 5px;
    color: #222;
}

.feature-box p {
    margin: 0;
    color: #666;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.info-row div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.info-row i {
    color: #d4af37;
}

.property-btn {
    display: block;
    text-align: center;
    background: #d4af37;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.property-btn:hover {
    background: #b8860b;
    color: #fff;
}

@media(max-width:768px) {

    .property-card {
        padding: 15px;
        border-radius: 15px;
        margin-top: 150px;
    }

    .property-card h2 {
        font-size: 24px;
        line-height: 1.2;
        margin: 12px 0;
    }

    .property-price {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* 3 BHK | 3.5 BHK | 4 BHK in one row */
    .property-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .feature-box {
        padding: 10px 5px;
        border-radius: 10px;
    }

    .feature-box i {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature-box h5 {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .feature-box p {
        font-size: 11px;
        line-height: 1.2;
    }

    /* EOI & Launch side by side */
    .info-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border-top: 1px solid #eee;
        padding-top: 12px;
        margin-bottom: 15px;
    }

    .info-row div {
        padding: 10px;
        background: #f8f8f8;
        border-radius: 10px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .info-row span {
        font-size: 11px;
    }

    .property-btn {
        padding: 12px;
        font-size: 14px;
    }
}

.price-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.price-pills span {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.wrap-bg {
    padding: 70px 0px;
    position: relative;
}

.why-lodha-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading span {
    color: #b68b2d;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 15px 0;
    font-size: 42px;
    font-weight: 700;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.why-card {
    height: 100%;
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid #ececec;
    transition: .4s;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #b68b2d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 30px;
    color: #b68b2d;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:991px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .why-card {
        padding: 30px 20px;
    }
}

@media(max-width:767px) {

    .why-lodha-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .icon-box {
        width: 65px;
        height: 65px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card {
        margin-bottom: 15px;
    }
}


.azur-section{
    padding:33px 0;
}

.azur-content{
    color:#fff;
}

.azur-badge{
    display:inline-block;
    background:#c9a227;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
}

.azur-content h2{
    font-size:48px;
    margin-bottom:15px;
    color:#000000;
}

.price-title{
    font-size:20px;
    margin-bottom:25px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:25px;
}

.price-card{
    background:#fff;
    border-radius:12px;
    padding:18px;
    text-align:center;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-5px);
}

.price-card h4{
    color:#222;
    margin-bottom:8px;
    font-size:18px;
}

.price-card p{
    margin:0;
    color:#b68b2d;
    font-weight:600;
}

.azur-info{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.azur-info div{
    background:#4c94fe;
    padding:15px 20px;
    border-radius:10px;
}

.azur-info strong{
    display:block;
    color:#fff;
}

.azur-info span{
    color:#ffffff;
}

.azur-btn{
    display:inline-block;
    background:#4c94fe;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.video-wrapper{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.video-wrapper video{
    width:100%;
    display:block;
    border-radius:20px;
}

/* Mobile */

@media(max-width:991px){

    .azur-content{
        margin-bottom:30px;
    }

    .azur-content h2{
        font-size:34px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .azur-info{
        flex-direction:column;
        gap:10px;
    }
}

.gallery-section{
    padding:80px 0;
    background:#fff;
}

.gallery-section span{
    color:#b68b2d;
    font-weight:600;
    letter-spacing:2px;
}

.gallery-section h2{
    margin:10px 0;
}

.gallerySwiper{
    padding-bottom:50px;
}

.gallerySwiper .swiper-slide{
    overflow:hidden;
    border-radius:15px;
}

.gallerySwiper img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:15px;
    transition:.5s;
}

.gallerySwiper img:hover{
    transform:scale(1.08);
}

.swiper-pagination-bullet-active{
    background:#b68b2d;
}

/* Footer */
.landing-footer{
    background:#111;
    color:#bdbdbd;
    padding:50px 0 25px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer h4{
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
    font-weight:700;
}

.footer-disclaimer p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:15px;
    color:#bdbdbd;
}

.footer-links{
    text-align:center;
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-links span{
    margin:0 10px;
    color:#666;
}

.footer-bottom{
    text-align:center;
    margin-top:15px;
}

.footer-bottom p{
    margin:0;
    font-size:13px;
    color:#999;
}

@media (max-width:768px){

    .landing-footer{
        padding:40px 15px 20px;
    }

    .footer-disclaimer h4{
        font-size:20px;
    }

    .footer-disclaimer p{
        font-size:13px;
        line-height:1.7;
    }

    .footer-links{
        font-size:13px;
    }
}