/*==================================================
GLOBAL
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    /* margin-left: 40px; */
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/*==================================================
HEADER
==================================================*/

.header {

    position: absolute;

    width: 100%;

    left: 0;

    top: 0;

    z-index: 999;

    padding: 28px 0;

}

.header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo img {

    width: 150px;

}

.contact-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    height: 52px;

    padding: 0 28px;

    border-radius: 6px;

    background: #D5A04C;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}

.contact-btn:hover {

    background: #BC8937;

}

/*==================================================
HERO
==================================================*/

.hero {

    position: relative;

    min-height: 920px;
    overflow: hidden;

    /* background: url("assets/hero.png") center center/cover no-repeat; */

}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;

    /* Ensures the video doesn't receive clicks */
    pointer-events: none;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .32);
    z-index: 1;

}

.hero-wrapper {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns: 1fr 250px;

    gap: 80px;

    align-items: center;

    min-height: 920px;

}

.hero-left {

    padding-top: 110px;

}

.hero-subtitle {

    display: block;

    color: #fff;

    font-size: 16px;

    letter-spacing: 4px;

    margin-bottom: 25px;

}

.hero-content{
    margin-top: 50px;
}

.hero-content h1 {

    font-family: 'Cormorant Garamond', serif;

    color: #fff;

    font-size: 40px;

    line-height: .93;

    font-weight: 500;

}

/*==========================================
PROPERTY CARD
==========================================*/

.hero-info {

    margin-top: 300px;

    width: 80%;

    background: #ffffffa2;
    border-radius: 8px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

}

/* Common */

.info-column {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 16px 28px;

}

/* Column 1 */

.price-column {

    border-right: 1px solid #ececec;

}

.info-title {

    display: block;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #666;

    margin-bottom: 10px;

    text-transform: uppercase;

}

.price-column h3 {

    font-family: 'Poppins', sans-serif;

    font-size: 18px;

    font-weight: 600;

    color: #111;

}

/* Column 2 */

.location-column {

    border-right: 1px solid #ececec;

}

.location-title {

    display: block;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #111;

    /* margin-bottom:10px; */

    text-transform: uppercase;

}

.location-column p {

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 600;

    color: #111;

    /* line-height:1.6; */

}

/* Column 3 */

.button-column {

    display: flex;

    justify-content: center;

    align-items: center;

}

/* Button */

.discover-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 150px;

    height: 45px;
    border-radius: 8px;

    background: #111;

    color: #fff;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    transition: .3s;

}

.discover-btn:hover {

    background: #C89A4B;

}

/* =========================================
   HERO FORM
========================================= */

.hero-form {

    position: absolute;

    right: 150px;
    z-index: 90;

    bottom: -330px;

    width: 400px;

    padding: 20px 28px 24px;

    background: #ffffffc9;

    /* backdrop-filter:blur(4px); */

    /* -webkit-backdrop-filter:blur(14px); */

    border: 1px solid rgba(255, 255, 255, .28);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
    border-radius: 8px;
    color: #111;

}

.hero-form2 {

    position: absolute;

    right: 10px;
    z-index: 90;

    bottom: -200px;

    width: 400px;

    padding: 20px 28px 24px;

    background: #ffffffc9;

    /* backdrop-filter:blur(4px); */

    /* -webkit-backdrop-filter:blur(14px); */

    /* border: 1px solid rgba(255, 255, 255, .28); */

    /* box-shadow: 0 18px 45px rgba(0, 0, 0, .20); */
    border-radius: 8px;
    color: #111;

}

.hero-form::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 55px;

    background: linear-gradient(to bottom,

            rgba(255, 255, 255, 0),

            rgba(255, 255, 255, .22));

    pointer-events: none;

}

.hero-form2::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    /* height: 55px; */

    /* background: linear-gradient(to bottom,

            rgba(255, 255, 255, 0),

            rgba(255, 255, 255, .22)); */

    pointer-events: none;

}

.hero-form h2,
.hero-form2 h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    font-weight: 500;

    /* color: #fff; */

    line-height: 1.05;

    margin-bottom: 18px;

}

.form-group {

    margin-bottom: 10px;

}

.hero-form input,
.hero-form2 input,
.hero-form select,
.hero-form2 select,
.hero-form textarea,
.hero-form2 textarea {

    width: 100%;

    background: transparent;

    border: none;

    border-bottom: 1px solid black;

    /* color: #fff; */

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    padding: 8px 0;

    outline: none;

}

.hero-form input::placeholder,
.hero-form2 input::placeholder,
.hero-form textarea::placeholder,
.hero-form2 textarea::placeholder {

    color: #000000;

}

.hero-form select,
.hero-form2 select {

    appearance: none;

    color: #fff;

}

.hero-form option,
.hero-form2 option {

    color: #111;

}

.hero-form textarea,
.hero-form2 textarea {

    resize: none;

    height: 90px;

}

.checkbox {

    display: flex;

    align-items: flex-start;

    gap: 4px;

    margin: 14px 0 18px;

    color: #000000;

    font-size: 12px;

    line-height: 1.4;

}

.checkbox input {

    width: 14px;

    height: 14px;

    margin-top: 3px;

}

.submit-btn {

    width: 100%;

    height: 36px;
    border-radius: 6px;

    border: none;

    background: #fff;

    color: #111;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .3s;

}

.submit-btn:hover {

    background: #d4a04c;

    color: #fff;

}

/*================================================
WHY BANDRA
================================================*/

.why-bandra {
    background: #1f1f1f;
    /* margin-top: -50px; */
    padding: 70px 0 70px;
}

.why-container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 260px 520px;

    column-gap: 120px;

    align-items: center;

}

.why-subtitle {

    display: block;

    font-family: Poppins, sans-serif;

    font-size: 20px;

    letter-spacing: 3px;

    color: #b9b9b9;

    margin-bottom: 18px;

}

.why-left h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 60px;

    line-height: .95;

    font-weight: 500;

    color: #fff;

}

.why-right {

    padding-top: 40px;

}

.why-right p {

    font-family: Poppins, sans-serif;

    font-size: 16px;

    line-height: 1.9;

    color: #d6d6d6;

    margin-bottom: 18px;

}

/*==================================================
PROJECT OVERVIEW
==================================================*/

.overview {

    background: #fff;

    padding: 120px 0;

}

.overview-container {

    display: grid;

    grid-template-columns: 38% 62%;

    gap: 90px;

    align-items: flex-start;

}

.overview-left {

    display: flex;

    align-items: flex-start;

}

.overview-left h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 66px;

    font-weight: 500;

    line-height: .92;

    color: #1d1d1d;

    letter-spacing: .5px;

}

.overview-right {

    max-width: 620px;

}

.overview-right p {

    font-family: 'Poppins', sans-serif;

    font-size: 18px;

    font-weight: 500;

    line-height: 2;

    color: #000;

    margin-bottom: 28px;

}

.overview-right p:last-child {

    margin-bottom: 0;

}

/*==================================================
LIVE ABOVE THE ORDINARY
==================================================*/

.experience {

    position: relative;

    background: url("assets/live-bg.png") center center/cover no-repeat;

    padding: 90px 0 0;

    overflow: hidden;

    height: 1000px;

}

.experience::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .35);

}

.experience-container {

    position: relative;

    z-index: 2;

    width: 95%;

    max-width: 1500px;

    margin: auto;

}

.experience-heading {

    max-width: 520px;

    margin-bottom: 45px;

}

.experience-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 64px;

    font-weight: 500;

    line-height: .95;

    color: #fff;

    margin-bottom: 22px;

}

.experience-heading p {

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    color: #ececec;

    line-height: 1.8;

    max-width: 450px;

}

.accordion {

    display: flex;

    height: 500px;

    overflow: hidden;

    margin-top: 200px;

}

.accordion-item {

    position: relative;

    flex: 1;

    cursor: pointer;

    transition: .6s cubic-bezier(.4, 0, .2, 1);

    background-size: cover;

    background-position: center;

    transform: scale(1);

    overflow: hidden;

    border-right: 2px solid rgba(255, 255, 255, .12);

}

.accordion-item.active {

    flex: 3;
    transform: scale(1.02);

}

.accordion-item .overlay {

    transition: .45s;

}

.accordion-item.active .overlay {

    background: linear-gradient(to top,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .05));

}

.accordion-item:not(.active) .overlay {

    background: rgba(0, 0, 0, .42);

}

.overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .55),

            rgba(0, 0, 0, .15));

}

.accordion-number {

    position: absolute;

    right: 22px;

    top: 18px;

    font-family: "Cormorant Garamond", serif;

    font-size: 92px;

    color: rgba(255, 255, 255, .28);

    line-height: 1;

    transition: .45s;

}

.accordion-content {

    position: absolute;

    left: 40px;

    bottom: 45px;

    z-index: 5;

    color: #fff;

    width: 330px;

}

.accordion-content h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    font-weight: 500;

    line-height: .95;

    margin-bottom: 14px;

}

.accordion-content p {

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #ececec;

}

.accordion-item:not(.active) .accordion-content p {

    opacity: 0;

    transform: translateY(20px);

    transition: .35s;

}

.accordion-item.active .accordion-content p {

    opacity: 1;

    transform: translateY(0);

}

.accordion-item.active .accordion-number {

    color: rgba(255, 255, 255, .45);

}

.accordion-item:not(.active) h3 {

    font-size: 26px;

    width: 170px;

}

.accordion-item:hover {

    filter: brightness(1.05);

}

.accordion-item,
.accordion-content,
.accordion-number,
.accordion-content p {

    transition: all .55s ease;

}

/*==================================================
RESIDENCES
==================================================*/

.residences {

    padding: 100px 0;

    background: #fff;

}

.residences-wrapper {

    width: 92%;

    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns: 430px 1fr;

    gap: 55px;

    align-items: start;

}

/* LEFT */

.residence-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    font-weight: 500;

    line-height: .95;

    color: #111;

    margin-bottom: 30px;

}

.residence-content p {

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: #555;

    margin-bottom: 45px;

}

.unlock-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 360px;

    height: 52px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    letter-spacing: 1px;

    transition: .3s;

}

.unlock-btn:hover {

    background: #c89b4a;

}

/* RIGHT */

.residence-gallery {

    display: flex;

    gap: 22px;

    width: 100%;

}

.gallery-card {

    position: relative;

    flex: 1;

    min-width: 0;

    height: 430px;

    background-size: cover;

    background-position: center;

    border-radius: 4px;

    overflow: hidden;

    transition: .4s ease;
    border-radius: 10px;

}

.gallery-card:first-child {

    flex: 1.15;

}

.card-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .7),

            rgba(0, 0, 0, .12));

}

.gallery-content {

    position: absolute;

    left: 18px;

    right: 18px;

    bottom: 18px;

    color: #fff;

    z-index: 2;

}

.gallery-content h3 {

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 6px;

}

.gallery-content span {

    font-size: 12px;

    line-height: 1.6;

    opacity: .95;

}

/*==================================================
WHY INVEST
==================================================*/

.invest {

    padding: 90px 0;

    background: #fff;

}

.invest-container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}

.invest-heading {

    text-align: center;

    margin-bottom: 55px;

}

.invest-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 44px;

    font-weight: 500;

    color: #111;

    margin-bottom: 18px;

}

.invest-heading p {

    max-width: 700px;

    margin: auto;

    font-family: Poppins, sans-serif;

    color: #555;

    font-size: 18px;

    line-height: 1.8;

}

/* Grid */

.invest-grid {

    display: grid;
    justify-content: center;

    row-gap: 30px;

    grid-template-columns: 580px 580px;

    column-gap: 60px;

}

/* Cards */

.invest-card {

    position: relative;

    width: 100%;

    height: 420px;

    background-size: cover;

    background-position: center;

    border-radius: 8px;

    overflow: hidden;

    transition: .35s ease;

}

/* .invest-card:nth-child(3) {

    margin-left: 45px;

    margin-top: -10px;

} */

/* Overlay */

.invest-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top,

            rgba(0, 0, 0, .72),

            rgba(0, 0, 0, .05));

}

/* Content */

.invest-content {

    position: absolute;

    left: 18px;

    right: 18px;

    bottom: 18px;

    color: #fff;

    z-index: 2;

}

.invest-content h3 {

    font-family: Poppins, sans-serif;

    font-size: 22px;

    font-weight: 600;

    margin-bottom: 10px;

    line-height: 1.1;

}

.invest-content p {

    font-size: 12px;

    line-height: 1.6;

    color: #f1f1f1;

}

/*==================================================
GALLERY
==================================================*/

.gallery-section {

    padding: 100px 0;

    background: #fff;

}

.gallery-container {

    width: 92%;

    max-width: 1450px;

    margin: auto;

}

/* Heading */

.gallery-heading {

    text-align: center;

    margin-bottom: 65px;

}

.gallery-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 56px;

    font-weight: 500;

    color: #111;

    margin-bottom: 18px;

    letter-spacing: .5px;

}

.gallery-heading p {

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    color: #555;

    line-height: 1.8;

    max-width: 650px;

    margin: auto;

}

/* Images */

.gallery-row {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-bottom: 70px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 4px;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .45s;

}

.gallery-item:hover img {

    transform: scale(1.05);

}

/* Sizes */

.gallery-item.small {

    width: 120px;

    height: 220px;

}

.gallery-item.medium {

    width: 210px;

    height: 290px;

}

.gallery-item.large {

    width: 320px;

    height: 410px;

}

/* Button */

.gallery-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 240px;

    height: 48px;

    margin: auto;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    letter-spacing: 1px;

    transition: .35s;

}

.gallery-btn:hover {

    background: #C79A4A;

}

/*==================================================
FLOOR PLAN
==================================================*/

.floor-plan {

    background: #1f1f1f;

    padding: 90px 0 80px;

}

.floor-container {

    width: 92%;

    max-width: 1400px;

    margin: auto;

    text-align: center;

}

.floor-container h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;

    font-weight: 500;

    color: #fff;

    margin-bottom: 55px;

    letter-spacing: 1px;

}

/* Images */

.floor-wrapper {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 90px;

    margin-bottom: 55px;

}

.floor-card {

    width: 430px;

    height: 290px;

    overflow: hidden;

    border-radius: 4px;

    background: #fff;

}

.floor-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: blur(6px);

    transform: scale(1.08);

    user-select: none;

    pointer-events: none;

    display: block;

}

/* Remove hover completely */

.floor-card:hover img {

    filter: blur(6px);

    transform: scale(1.08);

}

/* Button */

.floor-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: 240px;

    height: 46px;

    background: #fff;

    color: #111;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 500;

    letter-spacing: .8px;

    text-transform: uppercase;

    border: none;

    cursor: pointer;

    transition: .35s ease;

}

.floor-btn:hover {

    background: #C79A4A;

    color: #fff;

}


/*==================================================
LOCATION
==================================================*/

.location {

    padding: 90px 0;

    background: #fff;

}

.location-container {

    width: 92%;

    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.2fr .9fr;

    gap: 60px;

    align-items: start;

}

/* Heading */

.location-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 50px;

    font-weight: 500;

    color: #111;

    margin-bottom: 15px;

    line-height: 1.05;

}

.location-subtitle {

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    color: #555;

    margin-bottom: 40px;

}

/* Two Columns */

.location-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

}

.location-column h4 {

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #111;

    margin: 22px 0 10px;

}

.location-column h4:first-child {

    margin-top: 0;

}

.location-column ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.location-column li {

    position: relative;

    padding-left: 14px;

    margin-bottom: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #444;

}

.location-column li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: #111;

}

/* Map */

.location-map {

    border-radius: 4px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);

}

.location-map iframe {

    width: 100%;

    height: 430px;

    border: none;

}

/*==================================================
FOOTER
==================================================*/

.footer {

    background: #1f1f1f;

    padding: 80px 0 35px;

}

.footer-container {

    width: 90%;

    max-width: 1400px;

    margin: auto;

    text-align: center;

}

.footer h2 {

    font-family: "Poppins", sans-serif;

    font-size: 44px;

    font-weight: 400;

    color: #fff;

    margin-bottom: 35px;

}

.footer p {

    max-width: 1300px;

    margin: auto;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 2;

    color: #cfcfcf;

}

.footer-line {

    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, .18);

    margin: 55px 0 28px;

}

.copyright {

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    color: #9f9f9f;

}

/*=========================================
POPUP
=========================================*/

.popup-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .72);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 99999;

}

.popup-overlay.active {

    opacity: 1;

    visibility: visible;

}

.popup-form {

    position: relative;

    width: 420px;
    margin-top: 100px;

    /* padding:28px; */

    background: rgba(255, 255, 255, .18);

    /* backdrop-filter:blur(18px); */

    /* -webkit-backdrop-filter:blur(18px); */

    /* border:1px solid rgba(255,255,255,.35); */

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);

    border-radius: 6px;
    z-index: 10;

}

.popup-close {

    position: absolute;

    right: 15px;

    top: 30px;

    width: 14px;

    height: 14px;

    border: none;

    background: none;

    color: #000;

    font-size: 14px;

    cursor: pointer;

}

.popup-form h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    margin-bottom: 25px;

}

/*==================================================
TABLET RESPONSIVE
PART 1
HEADER + HERO + WHY BANDRA + OVERVIEW
==================================================*/

@media screen and (max-width:992px){

/*==================================================
GLOBAL
==================================================*/

.container,
.why-container,
.overview-container,
.location-container,
.invest-container,
.floor-container,
.gallery-container{

    width:92%;

}

section{

    overflow:hidden;

}

/*==================================================
HEADER
==================================================*/

.header{

    padding:18px 0;

}

.logo img{

    width:125px;

}

.contact-btn{

    min-width:190px;

    height:48px;

    font-size:13px;

    padding:0 24px;

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:auto;

}

.hero-wrapper{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:center;

    min-height:auto;

    padding-top:160px;

    padding-bottom:60px;

    gap:50px;

}

.hero-left{

    width:100%;

    padding-top:0;

}

.hero-content{

    max-width:650px;

}

.hero-subtitle{

    font-size:14px;

    letter-spacing:3px;

}

.hero-content h1{

    font-size:64px;

    line-height:.9;

}

/*==================================================
PROPERTY CARD
==================================================*/

.hero-info{

    width:100%;

    margin-top:40px;

}

.info-column{

    padding:20px;

}

.price-column h3{

    font-size:22px;

}

.location-column p{

    font-size:13px;

}

.discover-btn{

    width:170px;

    height:46px;

}

/*==================================================
REGISTER FORM
==================================================*/

.hero-form{

    position:relative;

    right:auto;

    bottom:auto;

    width:100%;

    max-width:520px;

    margin:auto;
    display: none;

}

.hero-form2{

    width:100%;

    max-width:520px;

}

.hero-form h2,
.hero-form2 h2{

    font-size:34px;

}

.hero-form input,
.hero-form2 input,
.hero-form textarea,
.hero-form2 textarea,
.hero-form select,
.hero-form2 select{

    font-size:13px;

}

/*==================================================
WHY BANDRA
==================================================*/

.why-bandra{

    padding:90px 0;

}

.why-container{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:50px;

    align-items:flex-start;

}

.why-left h2{

    font-size:52px;

}

.why-subtitle{

    font-size:18px;

}

.why-right{

    padding-top:0;

}

.why-right p{

    font-size:15px;

    line-height:1.9;

}

/*==================================================
PROJECT OVERVIEW
==================================================*/

.overview{

    padding:90px 0;

}

.overview-container{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:60px;

}

.overview-left h2{

    font-size:54px;

}

.overview-right{

    max-width:100%;

}

.overview-right p{

    font-size:16px;

    line-height:1.9;

}

/*==================================================
LIVE ABOVE THE ORDINARY
==================================================*/

.experience{

    height:auto;

    padding:80px 0;

}

.experience-heading{

    max-width:600px;

    margin-bottom:40px;

}

.experience-heading h2{

    font-size:52px;

}

.experience-heading p{

    font-size:15px;

}

.accordion{

    height:420px;

    margin-top:60px;

}

.accordion-item.active{

    flex:2.4;

}

.accordion-number{

    font-size:72px;

}

.accordion-content{

    left:25px;

    bottom:30px;

    width:220px;

}

.accordion-content h3{

    font-size:36px;

}

.accordion-content p{

    font-size:13px;

    line-height:1.7;

}


/*==================================================
RESIDENCES
==================================================*/

.residences{

    padding:90px 0;

}

.residences-wrapper{

    grid-template-columns:1fr;

    gap:45px;

}

.residence-content{

    text-align:center;

}

.residence-content h2{

    font-size:52px;

}

.residence-content p{

    max-width:700px;

    margin:0 auto 35px;

}

.unlock-btn{

    width:320px;

    margin:auto;

}

.residence-gallery{

    gap:18px;

}

.gallery-card{

    height:360px;

}

.gallery-content h3{

    font-size:18px;

}


/*==================================================
WHY INVEST
==================================================*/

.invest{

    padding:90px 0;

}

.invest-heading{

    margin-bottom:45px;

}

.invest-heading h2{

    font-size:46px;

}

.invest-heading p{

    font-size:16px;

}

.invest-grid{

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.invest-card{

    width:100%;

    height:330px;

}

.invest-card:nth-child(3){

    margin:0;

}

.invest-content h3{

    font-size:20px;

}


/*==================================================
GALLERY
==================================================*/

.gallery-section{

    padding:90px 0;

}

.gallery-heading{

    margin-bottom:45px;

}

.gallery-heading h2{

    font-size:46px;

}

.gallery-heading p{

    font-size:16px;

}

.gallery-row{

    gap:14px;

}

.gallery-item.small{

    width:90px;

    height:170px;

}

.gallery-item.medium{

    width:170px;

    height:240px;

}

.gallery-item.large{

    width:260px;

    height:340px;

}


/*==================================================
FLOOR PLAN
==================================================*/

.floor-plan{

    padding:80px 0;

}

.floor-container h2{

    font-size:48px;

}

.floor-wrapper{

    gap:35px;

}

.floor-card{

    width:340px;

    height:230px;

}


/*==================================================
LOCATION
==================================================*/

.location{

    padding:90px 0;

}

.location-container{

    grid-template-columns:1fr;

    gap:45px;

}

.location-content h2{

    font-size:46px;

}

.location-grid{

    gap:30px;

}

.location-map iframe{

    height:420px;

}


/*==================================================
FOOTER
==================================================*/

.footer{

    padding:70px 0 30px;

}

.footer h2{

    font-size:40px;

}

.footer p{

    font-size:14px;

    line-height:1.9;

}


/*==================================================
POPUP
==================================================*/

.popup-form{

    width:430px;

    margin:40px auto;

}

.popup-close{

    top:18px;

    right:18px;

}


/*==================================================
GLOBAL FIXES
==================================================*/

img{

    max-width:100%;

    height:auto;

}

iframe{

    max-width:100%;

}

button,
a{

    transition:.3s ease;

}

}

/*==================================================
MOBILE RESPONSIVE
PART 1
HEADER + HERO + WHY BANDRA + OVERVIEW
==================================================*/

@media screen and (max-width:768px){

/*==================================================
GLOBAL
==================================================*/

html{

    overflow-x:hidden;

}

body{

    overflow-x:hidden;

}

.container,
.why-container,
.overview-container,
.gallery-container,
.floor-container,
.location-container{

    width:92%;

}

section{

    overflow:hidden;

}

h1{

    word-break:break-word;

}

/*==================================================
HEADER
==================================================*/

.header{

    padding:14px 0;

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:95px;

}

.contact-btn,
.header-btn{

    width:auto;

    min-width:150px;

    height:40px;

    font-size:11px;

    padding:0 16px;

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:auto;

    padding-bottom:45px;

}

.hero-wrapper{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:flex-start;

    padding-top:120px;

    padding-bottom:0;

    gap:35px;

}

.hero-left{

    width:100%;

    text-align:center;

}

.hero-content{

    max-width:100%;

}

.hero-subtitle{

    font-size:12px;

    letter-spacing:2px;

}

.hero-content h1{

    font-size:36px;

    line-height:1;

    margin:12px 0 18px;

}

/*==================================================
PROPERTY CARD
==================================================*/

.hero-info{

    width:100%;

    margin-top:25px;

    display:flex;

    flex-direction:column;

    border-radius:4px;

}

.info-column{

    width:100%;

    padding:20px;

    text-align:center;

    border-right:none;

    border-bottom:1px solid rgba(0,0,0,.08);

}

.info-column:last-child{

    border-bottom:none;

}

.info-title{

    font-size:13px;

}

.price-column h3{

    font-size:24px;

}

.location-column p{

    font-size:13px;

    line-height:1.7;

}

.discover-btn{

    width:100%;

    height:46px;

}

/*==================================================
REGISTER FORM
==================================================*/

.hero-form{

    position:relative;

    width:100%;

    max-width:100%;

    right:auto;

    bottom:auto;

    margin:0 auto;

    padding:24px;
    display: none;

}

.hero-form2{

    width:100%;

    max-width:95%;

    padding:10px;
    height: 85%;
    top: 0px;

}

.hero-form h2,
.hero-form2 h2{

    text-align:center;
    
    font-size:20px;
    
}

.hero-form input,
.hero-form2 input,
.hero-form select,
.hero-form2 select,
.hero-form textarea,
.hero-form2 textarea{

    font-size:13px;

}

.submit-btn{

    height:48px;

}

/*==================================================
WHY BANDRA
==================================================*/

.why-bandra{

    padding:60px 0;

}

.why-container{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.why-left{

    text-align:center;

}

.why-left span{

    font-size:13px;

}

.why-left h2{

    font-size:36px;

    line-height:1.1;

}

.why-right{

    text-align:center;

}

.why-right p{

    font-size:15px;

    line-height:1.8;

}

/*==================================================
PROJECT OVERVIEW
==================================================*/

.overview{

    padding:60px 0;

}

.overview-container{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.overview-left{

    text-align:center;

}

.overview-left h2{

    font-size:36px;

    line-height:1.1;

}

.overview-right{

    text-align:center;

}

.overview-right p{

    font-size:15px;

    line-height:1.8;

}

/*==================================================
LIVE ABOVE THE ORDINARY
==================================================*/

.experience{

    padding:60px 0;

    height:auto;

}

.experience-heading{

    text-align:center;

    margin-bottom:35px;

}

.experience-heading h2{

    font-size:36px;

    line-height:1.1;

}

.experience-heading p{

    font-size:15px;

    line-height:1.8;

}

.accordion{

    display:flex;

    flex-direction:column;

    gap:12px;

    height:auto;

}

.accordion-item{

    flex:none;

    width:100%;

    height:260px;

    border-right:none;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.accordion-item.active{

    flex:none;

}

.accordion-number{

    font-size:50px;

}

.accordion-content{

    left:22px;

    right:22px;

    bottom:24px;

    width:auto;

}

.accordion-content h3{

    font-size:28px;

}

.accordion-content p{

    font-size:13px;

    opacity:1;

    transform:none;

}

/*==================================================
RESIDENCES
==================================================*/

.residences{

    padding:60px 0;

}

.residence-wrapper{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.residence-content{

    text-align:center;

}

.residence-content h2{

    font-size:36px;

}

.residence-content p{

    font-size:15px;

    line-height:1.8;

}

.dark-btn{

    width:100%;

    max-width:260px;

    margin:auto;

}

.residence-cards{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.residence-card{

    width:100%;
}

.residence-gallery{
    display: inline;
}

.gallery-card{
    margin-bottom: 20px;
}

.card-image{

    height:260px;

}

.card-content{

    padding:22px;

}

.card-content h3{

    font-size:22px;

}

/*==================================================
WHY INVEST
==================================================*/

.invest{

    padding:60px 0;

}

.invest-heading{

    text-align:center;

    margin-bottom:35px;

}

.invest-heading h2{

    font-size:36px;

}

.invest-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:18px;

}

.invest-card,

.invest-image{

    width:100%;

}

.invest-image img{

    height:250px;

    object-fit:cover;

}

.invest-card{

    padding:30px;

}

.invest-card h3{

    font-size:22px;

}

/*==================================================
GALLERY
==================================================*/

.gallery-section{

    padding:60px 0;

}

.gallery-heading{

    margin-bottom:30px;

}

.gallery-heading h2{

    font-size:36px;

}

.gallery-heading p{

    font-size:15px;

}

.gallery-row{

    overflow-x:auto;

    justify-content:flex-start;

    gap:12px;

    padding-bottom:10px;

    scrollbar-width:none;

}

.gallery-row::-webkit-scrollbar{

    display:none;

}

.gallery-item{

    flex-shrink:0;

}

.gallery-item.small{

    width:90px;

    height:170px;

}

.gallery-item.medium{

    width:150px;

    height:220px;

}

.gallery-item.large{

    width:220px;

    height:300px;

}

.gallery-btn{

    width:220px;

}

/*==================================================
FLOOR PLAN
==================================================*/

.floor-plan{

    padding:60px 0;

}

.floor-container h2{

    font-size:36px;

}

.floor-wrapper{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.floor-card{

    width:100%;

    max-width:330px;

    height:220px;

    margin:auto;

}

.floor-btn{

    width:220px;

}

/*==================================================
LOCATION
==================================================*/

.location{

    padding:60px 0;

}

.location-container{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.location-content h2{

    font-size:34px;

    text-align:center;

}

.location-subtitle{

    text-align:center;

}

.location-grid{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.location-column{

    text-align:center;

}

.location-column li{

    padding-left:0;

}

.location-column li::before{

    display:none;

}

.location-map iframe{

    height:320px;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    padding:60px 0 30px;

}

.footer h2{

    font-size:32px;

}

.footer p{

    font-size:13px;

    line-height:1.9;

}

.footer-line{

    margin:35px 0 20px;

}

.copyright{

    font-size:12px;

}

/*==================================================
POPUP
==================================================*/

.popup-form{

    width:92%;

    max-width:400px;

    /* padding:22px; */

    margin:20px auto;

    height: 100%;
    max-height:90vh;

    overflow-y:auto;

}

.popup-close{

    right:14px;

    top:14px;

}

/*==================================================
GLOBAL FIXES
==================================================*/

img{

    max-width:100%;

    height:auto;

}

iframe{

    max-width:100%;

}

button,

a{

    transition:.3s;

}

}

/*==================================================
====================================================
LAPTOP RESPONSIVE
993px - 1440px
PART 1

HEADER
HERO
PROPERTY CARD
HERO FORM
WHY BANDRA
PROJECT OVERVIEW
====================================================
==================================================*/

@media screen and (min-width:993px) and (max-width:1440px){


/*==================================================
GLOBAL LAPTOP CONTAINER
==================================================*/

.container,
.why-container,
.overview-container,
.invest-container,
.gallery-container,
.floor-container,
.location-container{

    width:92%;

    max-width:1320px;

    margin-left:auto;

    margin-right:auto;

}


/*==================================================
HEADER
==================================================*/

.header{

    padding:22px 0;

}

.header-container{

    width:92%;

    max-width:1320px;

    margin:auto;

}

.logo img{

    width:120px;

}

.header-btn{

    min-width:190px;

    height:46px;

    padding:0 22px;

    font-size:12px;

}


/*==================================================
HERO
==================================================*/

.hero{

    min-height:820px;

}


/*
    The original desktop hero uses:

    grid-template-columns: 1fr 250px;
    gap:80px;

    This is too wide for many 13-inch screens.
*/

.hero-wrapper{

    width:92%;

    max-width:1320px;

    margin:auto;

    min-height:820px;

    grid-template-columns:minmax(0,1fr) 360px;

    gap:45px;

    align-items:center;

}


/*==================================================
HERO LEFT
==================================================*/

.hero-left{

    padding-top:70px;

    min-width:0;

}

.hero-content{

    max-width:680px;

}

.hero-subtitle{

    font-size:14px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:58px;

    line-height:.91;

}


/*==================================================
PROPERTY INFORMATION CARD
==================================================*/

.hero-info{

    width:100%;

    max-width:850px;

    margin-top:42px;

    grid-template-columns:1fr 1.15fr .9fr;

}


/*
    Reduce internal padding so the
    three columns don't become too wide.
*/

.info-column{

    padding:16px 22px;

}


/* STARTING FROM */

.info-title{

    font-size:11px;

    letter-spacing:2px;

}

.price-column h3{

    font-size:17px;

}


/* LOCATION */

.location-title{

    font-size:11px;

}

.location-column p{

    font-size:11px;

    line-height:1.55;

}


/* BUTTON */

.discover-btn{

    width:145px;

    height:42px;

    font-size:11px;

}


/*==================================================
HERO FORM
==================================================*/

/*
    The form should remain on the right,
    but shouldn't become so large that it
    overlaps the property card or hero text.
*/

.hero-right{

    width:100%;

    min-width:0;

}

.hero-form2{

    width:100%;

    max-width:360px;

    margin-left:auto;

    margin-right:0;

}


/*
    Form heading
*/

.hero-form2 h2{

    font-size:30px;

    line-height:1.05;

    margin-bottom:18px;

}


/*
    Form fields
*/

.hero-form2 input,
.hero-form2 select,
.hero-form2 textarea{

    font-size:12px;

    padding:8px 0;

}


/*
    Form spacing
*/

.hero-form2 .form-group{

    margin-bottom:10px;

}


/*
    Message field
*/

.hero-form2 textarea{

    height:70px;

}


/*
    Submit button
*/

.hero-form2 .submit-btn{

    height:46px;

}


/*==================================================
WHY BANDRA
==================================================*/

.why-bandra{

    padding:85px 0;

}

.why-container{

    grid-template-columns:300px minmax(0,1fr);

    gap:70px;

    align-items:start;

}

.why-left{

    min-width:0;

}

.why-left h2{

    font-size:56px;

    line-height:.95;

}

.why-right{

    max-width:700px;

    padding-top:5px;

}

.why-right p{

    font-size:15px;

    line-height:1.85;

}


/*==================================================
PROJECT OVERVIEW
==================================================*/

.overview{

    padding:85px 0;

}

.overview-container{

    grid-template-columns:320px minmax(0,1fr);

    gap:80px;

}

.overview-left{

    min-width:0;

}

.overview-left h2{

    font-size:55px;

    line-height:.95;

}

.overview-right{

    max-width:720px;

}

.overview-right p{

    font-size:15px;

    line-height:1.85;

}


}

/*==================================================
====================================================
LAPTOP RESPONSIVE
993px - 1440px
PART 2

EXPERIENCE
RESIDENCES
WHY INVEST
GALLERY
FLOOR PLANS
LOCATION
FOOTER
POPUP
====================================================
==================================================*/

@media screen and (min-width:993px) and (max-width:1440px){


/*==================================================
LIVE ABOVE THE ORDINARY / ACCORDION
==================================================*/

.experience{

    height:auto;

    min-height:700px;

    padding:90px 0;

}

.experience-heading{

    max-width:650px;

    margin-bottom:45px;

}

.experience-heading h2{

    font-size:52px;

    line-height:1;

}

.experience-heading p{

    font-size:14px;

    line-height:1.8;

}


/*
    Keep the accordion horizontal,
    but reduce its overall height.
*/

.accordion{

    width:100%;

    height:430px;

    margin-top:45px;

}

.accordion-item{

    min-width:0;

}

.accordion-item.active{

    flex:2.2;

}


/* Accordion number */

.accordion-number{

    font-size:70px;

}


/* Accordion text */

.accordion-content{

    left:25px;

    bottom:28px;

    width:240px;

}

.accordion-content h3{

    font-size:36px;

    line-height:1;

}

.accordion-content p{

    font-size:12px;

    line-height:1.7;

}


/*==================================================
RESIDENCES
==================================================*/

.residences{

    padding:90px 0;

}

.residence-wrapper{

    width:92%;

    max-width:1320px;

    margin:auto;

    display:grid;

    grid-template-columns:340px minmax(0,1fr);

    gap:55px;

    align-items:center;

}


/* Left content */

.residence-content{

    min-width:0;

}

.residence-content h2{

    font-size:46px;

    line-height:1;

}

.residence-content p{

    font-size:14px;

    line-height:1.8;

    margin-top:22px;

    margin-bottom:30px;

}

.dark-btn{

    min-width:190px;

    height:46px;

}


/* Residence cards */

.residence-cards{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:18px;

}

.residence-card{

    min-width:0;

}

.card-image{

    height:310px;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.card-content{

    padding:18px 4px;

}

.card-content small{

    font-size:10px;

}

.card-content h3{

    font-size:22px;

    margin:5px 0;

}

.card-content p{

    font-size:12px;

}


/*==================================================
WHY INVEST
==================================================*/

.invest{

    padding:90px 0;

}

.invest-heading{

    margin-bottom:45px;

}

.invest-heading span{

    font-size:11px;

    letter-spacing:2px;

}

.invest-heading h2{

    font-size:48px;

    line-height:1;

}


/*
    Keep the original visual grid,
    but prevent it from becoming too wide.
*/

.invest-grid{

    width:100%;

    max-width:1250px;

    margin:auto;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:18px;

}

.invest-image{

    min-width:0;

    overflow:hidden;

}

.invest-image img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

}

.invest-card{

    min-width:0;

    min-height:300px;

    padding:30px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.invest-card h3{

    font-size:22px;

    line-height:1.15;

}

.invest-card p{

    font-size:13px;

    line-height:1.8;

}


/*==================================================
GALLERY
==================================================*/

.gallery-section{

    padding:90px 0;

}

.gallery-heading{

    margin-bottom:45px;

}

.gallery-heading h2{

    font-size:48px;

    line-height:1;

}

.gallery-heading p{

    font-size:14px;

    line-height:1.8;

}


/*
    Prevent the gallery from touching
    the laptop viewport edges.
*/

.gallery-row{

    width:100%;

    max-width:1250px;

    margin:auto;

    gap:14px;

    align-items:center;

}

.gallery-item{

    overflow:hidden;

}

.gallery-item.small{

    width:90px;

    height:180px;

}

.gallery-item.medium{

    width:170px;

    height:250px;

}

.gallery-item.large{

    width:280px;

    height:360px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/* Gallery button */

.gallery-btn{

    width:200px;

    height:46px;

    font-size:11px;

}


/*==================================================
FLOOR PLANS
==================================================*/

.floor-plan{

    padding:90px 0;

}

.floor-container{

    width:92%;

    max-width:1200px;

    margin:auto;

}

.floor-container h2{

    font-size:48px;

    line-height:1;

}

.floor-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:35px;

    margin-top:45px;

}

.floor-card{

    width:330px;

    height:225px;

    overflow:hidden;

}

.floor-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.floor-btn{

    width:200px;

    height:46px;

    font-size:11px;

}


/*==================================================
LOCATION
==================================================*/

.location{

    padding:90px 0;

}

.location-container{

    width:92%;

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.location-content{

    min-width:0;

}

.location-content h2{

    font-size:48px;

    line-height:1;

}

.location-subtitle{

    font-size:14px;

    line-height:1.8;

    max-width:500px;

}

.location-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

    margin-top:35px;

}

.location-column h3{

    font-size:15px;

}

.location-column li{

    font-size:12px;

    line-height:1.7;

}


/* Map */

.location-map{

    width:100%;

    overflow:hidden;

}

.location-map iframe{

    width:100%;

    height:400px;

    display:block;

}


/*==================================================
FOOTER
==================================================*/

.footer{

    padding:70px 0 30px;

}

.footer-container{

    width:92%;

    max-width:1250px;

    margin:auto;

}

.footer h2{

    font-size:42px;

    line-height:1;

}

.footer p{

    font-size:13px;

    line-height:1.8;

}

.footer-line{

    margin:45px 0 25px;

}

.copyright{

    font-size:11px;

}


/*==================================================
POPUP
==================================================*/

.popup-overlay{

    padding:30px;

}

.popup-form{

    width:420px;

    max-width:90vw;

    max-height:90vh;

    overflow-y:auto;

    padding:28px;

}

.popup-form h2{

    font-size:30px;

}

.popup-form input,
.popup-form select,
.popup-form textarea{

    font-size:12px;

}

.popup-close{

    top:15px;

    right:15px;

}


/*==================================================
LAPTOP GLOBAL FIXES
==================================================*/

/*
    Prevent accidental horizontal overflow
*/

img{

    max-width:100%;

}

video{

    max-width:100%;

}

iframe{

    max-width:100%;

}


/*
    Prevent long text from forcing
    containers wider than the viewport.
*/

h1,
h2,
h3,
h4,
p{

    max-width:100%;

    overflow-wrap:break-word;

}


/*
    Make sure buttons don't cause
    horizontal overflow.
*/

button,
a{

    max-width:100%;

}

}