/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #eef1f3;
    color: #111;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #12a4d0;
    --primary-dark: #078bb4;
    --gold: #e9b400;
    --black: #050505;
    --white: #ffffff;
    --light: #f5f5f5;
    --border: #d3d9dd;
    --text: #171717;
    --muted: #666;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: calc(100% - 390px);
    height: 76px;

    background: #fff;

    z-index: 1000;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 24px;

    gap: 18px;
}


/* =========================================================
   BRAND AREA
========================================================= */

.navbar-brand {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 2px;

    flex-shrink: 0;
}


/* =========================================================
   Pravya LOGO
========================================================= */

.logo {
    width: 160px;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   VERTICAL DIVIDER
========================================================= */

.navbar-brand::after {
    content: "";

    width: 1px;
    height: 52px;

    background: #d5d5d5;

    order: 1;
}


/* =========================================================
   BRICKFOLIO PARTNER (HEADER)
========================================================= */

.partner-logo {
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;

    min-width: 105px;

    flex-shrink: 0;
}


/* Brickfolio image */

.partner-logo img {
    width: 42px;
    height: 32px;

    object-fit: contain;
}


/* Authorized Sales Partner */

.partner-logo span {
    display: block;

    text-align: center;

    font-size: 8px;
    line-height: 10px;

    font-weight: 700;

    color: #333;

    white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */
.desktop-nav {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    margin-left: auto;

    flex: 1 1 auto;

    min-width: 0;

    overflow: hidden;
}


/* Navigation links */

.desktop-nav a {
    display: flex;
    align-items: center;

    gap: 6px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;

    flex-shrink: 1;
    min-width: 0;
}


/* Hover */

.desktop-nav a:hover {
    color: var(--primary);
}


/* Icons */

.desktop-nav i {
    color: var(--primary);

    font-size: 14px;
}


/* =========================================================
   BROCHURE BUTTON
========================================================= */

.nav-brochure {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 2px solid var(--gold);

    background: var(--primary);

    color: #fff;

    padding: 10px 16px;

    border-radius: 25px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    flex-shrink: 0;

    transition: 0.3s ease;
}

.nav-brochure:hover {
    background: var(--primary-dark);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

    margin-left: auto;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;
}

/* =========================================================
   PAGE LAYOUT
========================================================= */

.page-layout {
    display: flex;
}

.main-content {
    width: calc(100% - 390px);

    padding-top: 76px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    height: 650px;

    overflow: hidden;
}

/* Mobile Hero Banner Image (Hidden by default on Desktop) */
.hero-mobile-img {
    display: none !important;
}

.hero-slider {
    position: absolute;

    inset: 0;
}

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    transform: translateX(100%);

    transition:
        transform 0.8s ease,
        opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;

    transform: translateX(0);
}

.hero-slide.previous {
    transform: translateX(-100%);
}

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35),
            transparent 60%
        );
}

.hero-content {
    position: absolute;

    top: 35px;
    left: 30px;

    width: 430px;

    z-index: 5;
}

.hero-card {
    background: white;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-top {
    background: var(--primary);

    color: white;

    text-align: center;

    padding: 14px;

    font-size: 24px;
    font-weight: 500;
}

.hero-card-body {
    padding: 22px 20px 14px;

    text-align: center;
}

.hero-card-body h1 {
    font-size: 27px;

    line-height: 1.2;
}

.hero-card-body h2 {
    font-size: 21px;

    margin-top: 7px;
}

.hero-by {
    margin-top: 12px;

    font-size: 17px;

    font-weight: 600;
}

.hero-location {
    margin-top: 5px;

    color: #666;

    font-size: 17px;
}

.hero-offers {
    background: var(--primary);

    color: white;

    padding: 14px 15px;

    text-align: center;

    border-top:
        4px dotted var(--gold);

    border-bottom:
        4px dotted var(--gold);
}

.hero-offers p {
    font-size: 17px;

    margin: 8px 0;

    font-weight: 500;
}

.hero-price {
    text-align: center;

    padding: 14px;
}

.hero-price span {
    display: block;

    font-size: 18px;
}

.hero-price strong {
    display: block;

    color: var(--primary);

    font-size: 28px;

    margin-top: 3px;
}

.hero-price small {
    color: var(--primary);

    font-size: 15px;

    font-weight: 700;
}

.hero-btn {
    margin: 0 40px 20px;

    width: calc(100% - 80px);
}

.primary-btn {
    border: 3px solid #aaa;

    border-right-color: var(--gold);
    border-bottom-color: var(--gold);

    background: var(--primary);

    color: white;

    min-height: 55px;

    padding: 12px 28px;

    border-radius: 17px;

    font-size: 19px;

    transition: 0.3s;
}

.primary-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;

    top: 50%;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);

    color: white;

    z-index: 10;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;

    bottom: 18px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 10;
}

.hero-dots button {
    width: 35px;
    height: 4px;

    border: 0;

    background: white;

    opacity: 0.5;
}

.hero-dots button.active {
    opacity: 1;

    background: var(--gold);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    background: white;

    margin: 10px 10px 0;

    padding: 10px 34px;
}

.section:nth-child(even) {
    background: #f8f6f6;
}

.section-inner {
    max-width: 1280px;

    margin: auto;
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading.center {
    text-align: center;
}

.section-heading.left {
    text-align: left;
}

.section-heading span {
    color: var(--primary);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    color: var(--primary);

    font-size: clamp(25px, 2vw, 38px);

    line-height: 1.15;

    margin-top: 4px;

    text-transform: capitalize;
}

.heading-line {
    position: relative;

    width: 170px;

    height: 1px;

    background: #999;

    margin: 13px auto 0;
}

.section-heading.left .heading-line {
    margin-left: 0;
}

.heading-line::after {
    content: "";

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    top: -2px;

    width: 55px;

    height: 4px;

    background: var(--primary);
}


/* =========================================================
   OVERVIEW
========================================================= */

.overview-section {
    padding: 30px 34px;
}

.overview-section .section-inner {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 40px;

    align-items: center;
}

.overview-content p {
    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 14px;

    color: #222;
}

.overview-image {
    padding: 8px;

    border: 4px solid #222;

    box-shadow:
        8px 8px 0 #ddd;
}

.overview-image img {
    aspect-ratio: 4 / 3;

    object-fit: cover;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlights-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px 50px;
}

.highlight-item {
    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 17px;

    line-height: 1.5;
}

.highlight-item i {
    color: var(--primary);

    font-size: 18px;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-table-wrapper {
    overflow-x: auto;

    border:
        1px solid var(--primary);

    border-radius: 25px;
}

.pricing-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 750px;
}

.pricing-table th {
    background: var(--primary);

    color: white;

    padding: 18px;

    font-size: 18px;

    text-align: left;
}

.pricing-table td {
    padding: 18px;

    border-bottom: 1px solid #ddd;

    font-size: 16px;
}

.pricing-table tr:last-child td {
    border-bottom: 0;
}

.table-btn {
    border: 3px solid #aaa;

    border-right-color: var(--gold);
    border-bottom-color: var(--gold);

    background: var(--primary);

    color: white;

    padding: 12px 22px;

    border-radius: 15px;

    font-size: 15px;
}


/* =========================================================
   PLANS (DESKTOP: 3 COLUMNS VISIBLE)
========================================================= */

.plans-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.plan-card {
    text-align: center;
}

.plan-image {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #ddd;
}

.plan-image img {
    height: 300px;

    object-fit: contain;

    background: #eee;

    filter: blur(1px);
}

.plan-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0, 0, 0, 0.45);
}

.plan-overlay button {
    border: 3px solid #aaa;

    border-right-color: var(--gold);
    border-bottom-color: var(--gold);

    background: var(--primary);

    color: white;

    padding: 15px 28px;

    border-radius: 15px;

    font-size: 17px;
}

.plan-card h3 {
    margin-top: 12px;

    color: var(--primary);

    font-size: 19px;
}


/* =========================================================
   AMENITIES
========================================================= */

.amenities-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}

.amenity-card {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    aspect-ratio: 1.3 / 1;
}

.amenity-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s;
}

.amenity-card:hover img {
    transform: scale(1.05);
}

.amenity-card div {
    position: absolute;

    left: 15px;
    bottom: 15px;

    background: rgba(0, 0, 0, 0.75);

    color: white;

    padding: 8px 13px;

    border-left: 5px solid var(--primary);

    font-size: 14px;

    font-weight: 700;
}

.amenity-list {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.amenity-list span {
    background: white;

    border: 1px solid var(--primary);

    color: var(--primary);

    padding: 8px 15px;

    border-radius: 30px;

    font-size: 14px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-wrapper {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;
}

.gallery-track-wrapper {
    overflow: hidden;

    width: 100%;
}

.gallery-track {
    display: flex;

    gap: 20px;

    transition:
        transform 0.5s ease;
}

.gallery-card {
    position: relative;

    min-width:
        calc((100% - 60px) / 4);

    height: 260px;

    border-radius: 14px;

    overflow: hidden;

    border: 2px solid #222;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card span {
    position: absolute;

    right: 8px;
    bottom: 8px;

    background: rgba(0, 0, 0, 0.7);

    color: white;

    padding: 5px 8px;

    font-size: 12px;
}

.gallery-arrow {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background: #eee;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   LOCATION
========================================================= */

.location-map {
    width: 100%;

    height: 430px;

    border: 1px solid #aaa;
}

.location-map iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.location-tabs {
    display: flex;

    margin-top: 20px;

    overflow-x: auto;
}

.location-tab {
    flex: 1;

    min-width: 170px;

    border: 1px solid var(--primary);

    background: white;

    color: var(--primary);

    padding: 15px;

    font-size: 15px;

    font-weight: 700;
}

.location-tab.active {
    background: var(--primary);

    color: white;
}

.location-content {
    border:
        1px solid var(--primary);

    padding: 25px;
}

.location-panel {
    display: none;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.location-panel.active {
    display: grid;
}

.location-panel div {
    font-size: 16px;

    display: flex;

    gap: 12px;

    align-items: center;
}

.location-panel i {
    color: var(--primary);
}

.location-btn {
    display: block;

    margin: 25px auto 0;
}


/* =========================================================
   ENQUIRE SECTION
========================================================= */

.enquire-subtitle {
    text-align: center;

    color: #555;

    font-size: 18px;

    margin-bottom: 25px;
}

.bottom-enquiry {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-radius: 25px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.bottom-form {
    min-width: 0;
}

.form-black-header {
    background: black;

    color: white;

    display: flex;

    height: 62px;

    align-items: center;
}

.form-black-header div {
    flex: 1;

    display: flex;

    justify-content: center;

    gap: 12px;

    border-right: 1px solid white;

    font-size: 16px;
}

.bottom-form-content {
    padding: 25px;
}

.bottom-form-content h3 {
    font-size: 23px;

    margin-bottom: 20px;
}

.bottom-image {
    min-height: 480px;
}

.bottom-image img {
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   FORM
========================================================= */

.form-field {
    position: relative;

    margin-bottom: 5px;
}

.form-field input {
    width: 100%;

    height: 58px;

    border:
        1px solid #ccd4da;

    border-radius: 7px;

    padding: 0 15px;

    font-size: 16px;

    outline: none;

    transition: 0.2s;
}

.form-field input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 2px rgba(18, 164, 208, 0.12);
}

.form-field input.invalid {
    border-color: #e53935;
}

.form-field input.valid {
    border-color: #18a558;
}

.field-error {
    display: block;

    color: #e53935;

    font-size: 12px;

    margin-top: 5px;

    min-height: 10px;
}

.iti {
    width: 100%;
}

.iti input {
    padding-left: 92px !important;
}

.consent {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    font-size: 11px;

    color: #555;

    line-height: 1.8;

    margin: 10px 0 20px;
}

.consent input {
    margin-top: 4px;

    flex-shrink: 0;
}

.consent a {
    color: #006dcc;

    text-decoration: underline;
}

.form-success {
    display: none;

    color: #168447;

    font-size: 13px;

    margin-top: 12px;

    text-align: center;
}

.form-success.show {
    display: block;
}


/* =========================================================
   STICKY RIGHT FORM
========================================================= */

.sticky-form {
    position: fixed;

    top: 0;
    right: 0;

    width: 390px;

    height: 100vh;

    background: white;

    z-index: 1200;

    box-shadow:
        -3px 0 12px rgba(0, 0, 0, 0.12);

    overflow-y: auto;
}

.sticky-top {
    height: 62px;

    display: flex;

    background: black;

    color: white;
}

.sticky-top a {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-right: 1px solid white;

    font-size: 15px;
}

.sticky-top i {
    font-size: 20px;
}

.sticky-form-body {
    padding: 25px 22px;
}

.sticky-form-body h2 {
    font-size: 23px;

    margin-bottom: 22px;

    line-height: 1.3;
}

.sticky-form-body .primary-btn {
    width: 100%;
}

.sticky-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 75px;
}

.sticky-features div {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 12px;

    font-size: 14px;
}

.sticky-features i {
    font-size: 45px;

    color: #050505;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 5000;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.65);
}

.modal-box {
    position: relative;

    width: min(700px, 92%);

    background: white;

    z-index: 2;

    border-radius: 4px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    height: 72px;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}

.modal-header h2 {
    font-size: 27px;
}

.modal-close {
    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: white;

    font-size: 27px;
}

.modal-content {
    padding: 30px 35px;
}

.modal-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 10px;
}

.modal-logo img {
    width: 200px;
    height: auto;

    object-fit: contain;
    display: block;
}

.modal-content .primary-btn {
    width: 60%;

    display: block;

    margin: auto;
}


/* =========================================================
   MOBILE BOTTOM BAR
========================================================= */

.mobile-bottom-bar {
    display: none;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    width: 100%;
    background: #f5f1f1;
    color: #111;
    margin-top: 0;
}

.authorised-sales-partner {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: #555555;
    text-align: center;
    display: block;
    white-space: nowrap;
}

/* =====================================================
   FOOTER TOP
===================================================== */

.footer-inner {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;

    padding: 22px 0 25px;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;

    align-items: start;
}


/* =====================================================
   FOOTER BRICK LOGO & TEXT UNDERNEATH
===================================================== */

.footer-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding-top: 0;
}

.footer-logo-section a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.footer-logo {
    width: 50px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {
    margin: 0 0 12px;

    font-size: 14px;
    font-weight: 700;

    color: #111;
}


.footer-column p {
    margin: 0;

    font-size: 13px;
    line-height: 1.5;

    color: #555;

    font-weight: 400;
}


/* =====================================================
   RERA
===================================================== */

.footer-rera {
    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 10px 0 10px;

    border-bottom: 1px solid #d6d0d0;

    text-align: center;

    font-size: 13px;
    line-height: 1.7;

    color: #111;
}


.footer-rera strong {
    font-weight: 700;
}


/* =====================================================
   DISCLAIMER
===================================================== */

.footer-disclaimer {
    width: 90%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 20px 0 15px;
}


.footer-disclaimer p {
    margin: 0;

    font-size: 12px;
    line-height: 1.95;

    color: #555;

    font-weight: 400;

    text-align: justify;
}


.footer-disclaimer strong {
    color: #222;
    font-weight: 700;
}


/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    padding: 5px 0 10px;

    font-size: 12px;
}


.footer-links a {
    color: #666;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-links a:hover {
    color: #111;
}


.footer-links span {
    color: #333;
}

@media (max-width: 768px) {
    .copyright-text {
        font-size: 13px !important;
    }

    .footer-links {
        font-size: 14px !important;
        gap: 10px !important;
    }
}


/* =====================================================
   COPYRIGHT
===================================================== */

.footer-bottom {
    width: 100%;

    background: #102c30;

    padding: 14px 20px;

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color: #fff;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .sticky-form {
        width: 330px;
    }

    .navbar,
    .main-content {
        width: calc(100% - 330px);
    }

    .desktop-nav {
        gap: 10px;
    }

    .desktop-nav a {
        font-size: 11px;
    }

    .nav-brochure {
        padding: 10px 12px;
    }

    .hero-content {
        width: 370px;
    }

    .gallery-card {
        min-width:
            calc((100% - 40px) / 3);
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1024px) {

    .sticky-form {
        display: none;
    }

    .navbar,
    .main-content {
        width: 100%;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;

        margin-left: auto;
    }

    .mobile-nav {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        background: white;

        padding: 15px 25px;

        display: none;

        flex-direction: column;

        gap: 10px;

        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .mobile-nav.show {
        display: flex;
    }

    .mobile-nav a {
        padding: 12px;

        border-bottom: 1px solid #eee;

        font-weight: 600;
    }

    .mobile-nav button {
        background: var(--primary);

        color: white;

        border: 0;

        padding: 13px;

        border-radius: 8px;

        font-weight: 700;
    }

    .hero {
        height: 620px;
    }

    .overview-section .section-inner {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-bottom-bar {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        position: fixed;

        bottom: 0;
        left: 0;

        width: 100%;

        height: 65px;

        background: black;

        z-index: 3000;
    }

    .mobile-bottom-bar a,
    .mobile-bottom-bar button {
        color: white;

        background: black;

        border: 0;

        border-right: 1px solid #555;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        font-size: 11px;
    }

    .mobile-bottom-bar i {
        font-size: 17px;

        color: var(--primary);
    }

}


/* =========================================================
   MOBILE RESPONSIVE RULES (MAX-WIDTH: 768px / 767px)
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       FLOOR PLAN INFINITE CAROUSEL ON MOBILE
    ===================================================== */
    .plans-slider-wrapper {
        overflow: hidden !important;
        width: 100% !important;
        position: relative !important;
        padding-bottom: 10px !important;
    }

    .plans-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: 100% !important;
        transition: transform 0.4s ease-in-out !important;
        will-change: transform;
    }

    .plan-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 5px !important;
    }

    .plans-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }

    .plans-dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: #ccc !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .plans-dot.active {
        background: #12a4d0 !important;
        width: 24px !important;
        border-radius: 5px !important;
    }


    /* =====================================================
       FOOTER MOBILE FIXES (60px LOGO & 3 COLUMNS IN SINGLE ROW)
    ===================================================== */
    .footer-inner {
        width: 95% !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;

        padding: 15px 0 !important;
        text-align: center !important;
        align-items: start !important;
    }

    /* Logo Section (Centered Full Width Top) */
    .footer-logo-section {
        grid-column: 1 / -1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding-bottom: 8px !important;
    }

    /* Brick Logo fixed to 60px */
    .footer-logo {
        width: 60px !important;
        max-width: 60px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .authorised-sales-partner {
        font-size: 11px !important;
        margin-top: 4px !important;
    }

    /* Email / Call / Visit Info Columns in 1 Line */
    .footer-column {
        text-align: center !important;
        min-width: 0 !important;
        padding: 0 2px !important;
    }

    .footer-column h3 {
        margin-bottom: 4px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .footer-column p {
        font-size: 9.5px !important;
        line-height: 1.35 !important;
        color: #555 !important;
        word-break: break-word !important;
    }

    .footer-rera {
        width: 90%;
        font-size: 12px;
        padding: 14px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .footer-disclaimer {
        width: 90%;
        padding: 14px 0 10px;
    }

   .footer-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
    padding-bottom: 60px;
}

    .footer-links {
        font-size: 11px;
        padding: 10px 15px 20px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        padding: 12px 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {

    .navbar {
        height: 62px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo {
        width: 150px;
    }

    .mobile-nav {
        top: 62px;
    }

    .main-content {
        padding-top: 62px;
    }

    .section {
        margin: 7px 5px 0;

        padding: 10px 17px;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .overview-section .section-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .overview-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .overview-image {
        box-shadow: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .highlight-item {
        font-size: 14px;
    }

    .pricing-table-wrapper {
        border-radius: 15px;
    }

    .pricing-table {
        min-width: 700px;
    }

    .plan-image img {
        height: 320px;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .amenity-card {
        border-radius: 12px;
    }

    .amenity-card div {
        left: 7px;
        bottom: 7px;

        font-size: 10px;

        padding: 5px 7px;
    }

    .gallery-wrapper {
        gap: 7px;
    }

    .gallery-card {
        min-width: 100%;

        height: 260px;
    }

    .gallery-arrow {
        width: 35px;
        height: 35px;
    }

    .location-map {
        height: 300px;
    }

    .location-tabs {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .location-tab {
        min-width: 0;

        font-size: 12px;

        padding: 12px 5px;
    }

    .location-panel {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .location-panel div {
        font-size: 13px;
    }

    .bottom-enquiry {
        grid-template-columns: 1fr;
    }

    .bottom-image {
        min-height: 280px;

        order: -1;
    }

    .bottom-form-content {
        padding: 18px;
    }

    .bottom-form-content h3 {
        font-size: 19px;
    }

    .form-black-header {
        height: auto;

        flex-direction: column;
    }

    .form-black-header div {
        width: 100%;

        padding: 12px;

        border-right: 0;
    }

    .modal-box {
        width: 94%;

        max-height: 90vh;

        overflow-y: auto;
    }

    .modal-header {
        height: 60px;
    }

    .modal-header h2 {
        font-size: 21px;
    }

    .modal-content {
        padding: 22px 18px;
    }

    .modal-content .primary-btn {
        width: 100%;
    }

    .partner-logo img {
        height: 30px;
    }

    .partner-logo span {
        font-size: 7px;
        line-height: 1.5;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .amenities-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE HERO - SINGLE IMAGE ONLY
========================================================= */

@media (max-width: 768px) {

    .hero {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    /* Single Mobile Image Banner */
    .hero-mobile-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Hide Interactive Desktop Elements on Mobile */
    .hero-slider,
    .hero-overlay,
    .hero-content,
    .hero-arrow,
    .hero-dots {
        display: none !important;
    }

}


/* =========================================================
   PRICING SECTION - MOBILE FIX
========================================================= */

@media (max-width: 768px) {

    /* Prevent pricing section from creating horizontal overflow */
    .pricing-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 12px !important;
        overflow: hidden !important;
    }

    .pricing-section .section-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    /* Heading */
    .pricing-section .section-heading {
        width: 100% !important;
        text-align: center !important;
        margin: 0 0 25px !important;
    }

    .pricing-section .section-heading span {
        display: block !important;
        font-size: 10px !important;
        letter-spacing: 2px !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
        margin-bottom: 6px !important;
    }

    .pricing-section .section-heading h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .pricing-section .heading-line {
        margin: 10px auto 0 !important;
    }


    /* =====================================================
       TABLE WRAPPER
    ===================================================== */

    .pricing-table-wrapper {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    /* =====================================================
       REMOVE DESKTOP TABLE BEHAVIOUR
    ===================================================== */

    .pricing-table {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        table-layout: auto !important;

        border-collapse: separate !important;
        border-spacing: 0 !important;

        border: 2px solid var(--primary) !important;
        border-radius: 14px !important;

        overflow: hidden !important;

        background: #fff !important;
    }


    .pricing-table thead {
        display: none !important;
    }


    .pricing-table tbody {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =====================================================
       EACH ROW BECOMES A CARD
    ===================================================== */

    .pricing-table tbody tr {
        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        min-height: 180px !important;

        margin: 0 !important;
        padding: 20px 15px !important;

        border: 0 !important;
        border-bottom: 1px solid #e5e5e5 !important;

        text-align: center !important;

        overflow: hidden !important;
    }

    .pricing-table tbody tr:last-child {
        border-bottom: none !important;
    }


    /* =====================================================
       ALL CELLS
    ===================================================== */

    .pricing-table tbody td {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;

        text-align: center !important;

        white-space: normal !important;

        overflow: visible !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       TYPE
    ===================================================== */

    .pricing-table tbody td:nth-child(1) {
        font-size: 16px !important;
        line-height: 1.3 !important;

        font-weight: 700 !important;

        color: #111 !important;

        text-align: center !important;

        margin-bottom: 8px !important;
    }


    /* =====================================================
       AREA
    ===================================================== */

    .pricing-table tbody td:nth-child(2) {
        font-size: 13px !important;
        line-height: 1.4 !important;

        font-weight: 400 !important;

        color: #222 !important;

        text-align: center !important;

        margin-bottom: 6px !important;
    }


    /* =====================================================
       PRICE
    ===================================================== */

    .pricing-table tbody td:nth-child(3) {
        font-size: 13px !important;
        line-height: 1.4 !important;

        color: #222 !important;

        text-align: center !important;

        margin-bottom: 15px !important;
    }


    /* =====================================================
       BUTTON CELL
    ===================================================== */

    .pricing-table tbody td:nth-child(4) {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        text-align: center !important;
    }


    /* =====================================================
       COMPLETE DETAILS BUTTON
    ===================================================== */

    .pricing-table tbody .table-btn {
        display: block !important;

        width: 90% !important;
        max-width: 265px !important;
        min-width: 0 !important;

        height: 44px !important;

        margin: 0 auto !important;
        padding: 8px 15px !important;

        border: 2px solid var(--gold) !important;
        border-radius: 13px !important;

        background: var(--primary) !important;
        color: #fff !important;

        font-family: inherit !important;
        font-size: 12px !important;
        font-weight: 600 !important;

        text-align: center !important;

        white-space: normal !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   BOTTOM ENQUIRY FORM - MOBILE VIEW
========================================================= */

@media (max-width: 768px) {

    .enquire-section {
        width: 100%;
        overflow: hidden;
        padding: 35px 10px 30px;
    }

    .enquire-section .section-inner {
        width: 100%;
        padding: 0;
    }

    /* Heading */
    .enquire-section .section-heading {
        margin-bottom: 14px;
    }

    .enquire-section .section-heading h2 {
        font-size: 21px;
        line-height: 1.2;
    }

    .enquire-section .heading-line {
        margin: 8px auto 12px;
    }

    /* Subtitle */
    .enquire-subtitle {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
        margin: 0 auto 22px;
        max-width: 330px;
    }


    /* FORM + IMAGE */
    .bottom-enquiry {
        display: block;
        width: 100%;
        margin: 0;
    }


    /* Hide image on mobile */
    .bottom-image {
        display: none;
    }


    /* FORM CARD */
    .bottom-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;

        background: #fff;

        border-radius: 10px;

        overflow: hidden;

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    }


    /* BLACK HEADER */
    .bottom-form .form-black-header {
        display: grid;
        grid-template-columns: 1fr 1.15fr;

        width: 100%;
        min-height: 45px;

        background: #050505;
        color: #fff;

        padding: 0;

        border-radius: 10px 10px 0 0;
    }

    .bottom-form .form-black-header > div {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        min-width: 0;

        padding: 0 7px;

        font-size: 12px;
        font-weight: 500;

        white-space: nowrap;
    }

    .bottom-form .form-black-header > div:first-child {
        border-right: 1px solid #777;
    }

    .bottom-form .form-black-header i {
        font-size: 18px;
        flex-shrink: 0;
    }


    /* FORM CONTENT */
    .bottom-form-content {
        width: 100%;
        padding: 16px 14px 18px;
    }

    .bottom-form-content h3 {
        font-size: 17px;
        line-height: 1.3;

        margin: 0 0 16px;

        text-align: left;
    }


    /* FORM FIELDS */
    .bottom-form .lead-form {
        width: 100%;
    }

    .bottom-form .form-field {
        width: 100%;
        margin-bottom: 17px;
    }


    /* Inputs */
    .bottom-form .form-field input {
        width: 100%;
        height: 42px;

        padding: 0 12px;

        border: 1px solid #d8dde1;
        border-radius: 5px;

        background: #fff;

        font-size: 13px;
        color: #222;

        outline: none;
    }

    .bottom-form .form-field input:focus {
        border-color: var(--primary);
    }


    /* Phone input */
    .bottom-form .phone-field {
        position: relative;
    }

    .bottom-form .phone-input {
        width: 100%;
    }


    /* CONSENT */
    .bottom-form .consent {
        display: flex;
        align-items: flex-start;

        width: 100%;

        gap: 5px;

        margin: 0 0 18px;

        font-size: 9px;
        line-height: 1.55;

        color: #555;
    }

    .bottom-form .consent input[type="checkbox"] {
        width: 11px;
        height: 11px;

        flex: 0 0 11px;

        margin: 2px 0 0;
    }

    .bottom-form .consent span {
        display: block;
        flex: 1;
    }

    .bottom-form .consent a {
        color: #078bb4;
        text-decoration: underline;
    }


    /* PRE-REGISTER BUTTON */
    .bottom-form .primary-btn {
        display: block;

        width: 85%;
        max-width: 255px;

        height: 47px;

        margin: 0 auto;

        border: 4px solid #b7b7b7;
        border-radius: 14px;

        background: var(--primary);
        color: #fff;

        font-size: 17px;
        font-weight: 600;

        text-align: center;
    }

    .bottom-form .primary-btn:hover {
        background: var(--primary-dark);
    }


    /* Success message */
    .bottom-form .form-success {
        text-align: center;
        font-size: 12px;
        margin-top: 10px;
    }
}

/* =========================================================
   DESKTOP FLOATING BUTTONS
========================================================= */

.bottom-floating-actions {
    position: fixed;

    right: 24px;
    bottom: 24px;

    display: flex;
    flex-direction: column;

    gap: 12px;

    z-index: 99999;
}

.float-btn {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    color: #ffffff !important;

    font-size: 22px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.float-whatsapp {
    background: #25D366 !important;
}

.float-phone {
    background: var(--primary) !important;
}

.float-btn:hover {
    transform: scale(1.1);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.float-btn i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #ffffff !important;

    line-height: 1;
}


/* =========================================================
   MOBILE BOTTOM BAR
========================================================= */

@media (max-width: 767px) {

    .bottom-floating-actions {
        display: none;
    }

    .mobile-bottom-bar {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        height: 58px;

        display: flex;

        z-index: 99999;

        box-shadow:
            0 -3px 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-bottom-btn {
        flex: 1;

        height: 58px;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 8px;

        color: #ffffff !important;

        text-decoration: none;

        font-family: inherit;

        font-size: 14px;

        font-weight: 700;
    }

    .mobile-bottom-btn i {
        color: #ffffff !important;

        font-size: 18px;

        display: inline-flex;

        align-items: center;
        justify-content: center;
    }

    .btn-whatsapp {
        background: #25D366 !important;
    }

    .btn-call {
        background: var(--primary) !important;
    }

}


/* =========================================================
   DESKTOP NAVBAR RESPONSIVE FIX
========================================================= */

@media (min-width: 1401px) {

    .navbar {
        width: calc(100% - 390px);
    }

    .main-content {
        width: calc(100% - 390px);
    }

    .nav-container {
        padding: 0 18px;
        gap: 10px;
    }

    .logo {
        width: 150px;
    }

    .partner-logo {
        min-width: 90px;
    }

    .desktop-nav {
        gap: 10px;
    }

    .desktop-nav a {
        font-size: 13px;
        gap: 4px;
    }

    .desktop-nav i {
        font-size: 13px;
    }

    .nav-brochure {
        padding: 9px 14px;
        font-size: 13px;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {

    .navbar {
        width: calc(100% - 390px);
        height: 76px;
    }

    .main-content {
        width: calc(100% - 390px);
        padding-top: 76px;
    }

    .nav-container {
        padding: 0 10px;
        gap: 6px;
    }

    .logo {
        width: 130px;
    }

    .partner-logo {
        min-width: 82px;
    }

    .partner-logo img {
        width: 42px;
        height: 34px;
    }

    .partner-logo span {
        font-size: 7px;
        line-height: 8px;
    }

    .navbar-brand::after {
        height: 48px;
    }

    .desktop-nav {
        gap: 7px;
    }

    .desktop-nav a {
        font-size: 10px;
        gap: 3px;
    }

    .desktop-nav i {
        font-size: 10px;
    }

    .nav-brochure {
        padding: 8px 11px;
        font-size: 10px;
        gap: 4px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {

    .sticky-form {
        width: 330px;
    }

    .navbar {
        width: calc(100% - 330px);
        height: 72px;
    }

    .main-content {
        width: calc(100% - 330px);
        padding-top: 72px;
    }

    .nav-container {
        padding: 0 7px;
        gap: 4px;
    }

    .logo {
        width: 105px;
    }

    .partner-logo {
        min-width: 68px;
    }

    .partner-logo img {
        width: 34px;
        height: 28px;
    }

    .partner-logo span {
        font-size: 6px;
        line-height: 7px;
    }

    .navbar-brand::after {
        height: 44px;
    }

    .desktop-nav {
        gap: 4px;
    }

    .desktop-nav a {
        font-size: 9px;
        gap: 2px;
    }

    .desktop-nav i {
        font-size: 9px;
    }

    .nav-brochure {
        padding: 7px 8px;
        font-size: 9px;
        gap: 3px;
    }
}

.navbar--full {
    width: 100% !important;
}