

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", Arial, sans-serif;
            background: #fff;
            color: #222;
        }

        /* =========================
           NAVBAR
        ========================== */

        .navbar {
            height: 52px;
            width: 100%;
            display: flex;
            align-items: stretch;
            background: #fff;
            border-bottom: 1px solid #ddd;
            position: relative;
            z-index: 1000;
        }

        .logo-box {
            width: 185px;
            min-width: 185px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
        }

        .logo {
            text-align: center;
            line-height: 1;
        }

        .logo .godrej {
            color: #5e9b3d;
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .logo .whitefield {
            color: #164f98;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: .2px;
        }

        .logo .villas {
            color: #164f98;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo .bangalore {
            color: #444;
            font-size: 8px;
            letter-spacing: 4px;
            margin-top: 2px;
        }

        .nav-menu {
            height: 100%;
            display: flex;
            flex: 1;
        }

        .nav-item {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 13px;
            color: #111;
            text-decoration: none;
            border-left: 1px solid #ddd;
            font-size: 14px;
            white-space: nowrap;
            transition: .25s ease;
        }

        .nav-item i {
            font-size: 17px;
        }

        .nav-item:hover {
            background: #1e579e;
            color: #fff;
        }

        .nav-item.active {
            background: #20599f;
            color: #fff;
        }

        /* =========================
           HERO
        ========================== */

        .hero {
            height: calc(100vh - 52px);
            min-height: 600px;
            position: relative;
            overflow: hidden;
            background-image:
                linear-gradient(
                    rgba(0,0,0,.02),
                    rgba(0,0,0,.02)
                ),
                url("./images/adarsh_banner.png");

            background-size: cover;
            background-position: center;
        }

        /* Dark/light image overlay */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                rgba(0,0,0,.08),
                rgba(0,0,0,0)
            );
            pointer-events: none;
        }

        /* =========================
           LEFT INFORMATION CARD
        ========================== */

        .info-card {
            position: absolute;
            z-index: 10;
            top: 10px;
            left: 8px;
            width: 301px;
            background: #fff;
            border-radius: 7px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,.2);
        }

        .booking-strip {
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 13px;
            font-weight: 600;

            background: #144A87
        }

        .info-content {
            padding: 13px 12px 20px;
        }

        .info-content h1 {
            font-size: 23px;
            line-height: 1.2;
            margin-bottom: 8px;
            font-weight: 800;
            color: #292929;
        }

        .sub-heading {
            font-size: 11px;
            color: #333;
            margin-bottom: 8px;
        }

        /* Rating */

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 12px;
        }

        .google-icon {
            width: 17px;
            height: 17px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            color: #4285f4;
        }

        .stars {
            color: #f2b632;
            font-size: 14px;
            letter-spacing: 0;
        }

        .rating-number {
            color: #777;
            font-size: 13px;
        }

        .reviews {
            font-size: 11px;
            color: #777;
        }

        /* =========================
           PROPERTY DETAILS
        ========================== */

        .details-box {
            background: #ededed;
            padding: 11px 16px;
            margin-bottom: 14px;
        }

        .detail-row {
            display: grid;
            grid-template-columns: 85px 1fr;
            font-size: 12px;
            margin: 3px 0;
        }

        .detail-row span:first-child {
            color: #333;
        }

        .detail-row span:last-child {
            font-weight: 700;
        }

        /* =========================
           OFFER BOX
        ========================== */

        .offer-box {
            padding: 7px;
            background: #144A87;
            margin-bottom: 10px;
        }

        .offer-inner {
            min-height: 85px;
            border: 2px dashed #fff;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8px;
        }

        .offer-inner div {
            font-size: 12px;
            font-weight: 700;
            line-height: 20px;
        }

        /* =========================
           PRICE
        ========================== */

        .price-text {
            text-align: center;
            color: #555;
            font-size: 13px;
            line-height: 25px;
            margin-bottom: 5px;
        }
        .possession-text{
            margin-bottom: 10px;
        }

        .price-text strong {
            font-size: 20px;
            color: #242424;
        }

        /* =========================
           BUTTON
        ========================== */

        .brochure-btn {
            display: block;
            width: 196px;
            margin: auto;
            padding: 9px 15px;
            border: 0;
            border-radius: 4px;
            background: #144A87;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: .25s ease;
        }

        .brochure-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,.2);
        }

        /* =========================
           SLIDER DOTS
        ========================== */

        .slider-dots {
            position: absolute;
            z-index: 20;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
        }

        .dot {
            width: 30px;
            height: 3px;
            background: rgba(255,255,255,.65);
            cursor: pointer;
            transition: .3s;
        }

        .dot.active {
            background: #fff;
        }

        /* =========================
           MOBILE MENU
        ========================== */

        .mobile-menu-btn {
            display: none;
            border: 0;
            background: #20599f;
            color: #fff;
            font-size: 20px;
            width: 50px;
            cursor: pointer;
        }

        /* =========================
           TABLET
        ========================== */

        @media (max-width: 1000px) {

            .logo-box {
                width: 170px;
                min-width: 170px;
            }

            .nav-item {
                padding: 0 8px;
                font-size: 12px;
                gap: 5px;
            }

            .nav-item i {
                font-size: 14px;
            }

            .info-card {
                width: 290px;
            }
        }

        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 768px) {

            .navbar {
                height: 58px;
                justify-content: space-between;
            }

            .logo-box {
                width: 180px;
                min-width: 180px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 58px;
                left: 0;
                width: 100%;
                height: auto;
                background: #fff;
                display: none;
                flex-direction: column;
                box-shadow: 0 5px 15px rgba(0,0,0,.2);
            }

            .nav-menu.show {
                display: flex;
            }

            .nav-item {
                height: 48px;
                justify-content: flex-start;
                padding-left: 20px;
                border-bottom: 1px solid #ddd;
            }

            .hero {
                height: calc(100vh - 58px);
                min-height: 650px;
                background-position: 65% center;
            }

            .info-card {
                top: 100px;
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% - 24px);
                max-width: 350px;
            }

            .slider-dots {
                bottom: 15px;
            }
        }

        /* =========================
           SMALL MOBILE
        ========================== */

        @media (max-width: 400px) {

            .logo-box {
                width: 165px;
                min-width: 165px;
            }

            .logo .godrej {
                font-size: 14px;
            }

            .logo .whitefield {
                font-size: 14px;
            }

            .logo .villas {
                font-size: 11px;
            }

            .info-card {
                width: calc(100% - 16px);
            }

            .info-content h1 {
                font-size: 21px;
            }

            .offer-inner {
                min-height: 78px;
            }
        }

/* =========================================
   WELCOME SECTION
========================================= */

.welcome-section {
    background: #fff;
    padding: 38px 34px 30px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);
}

.welcome-container {
    max-width: 1200px;
    margin: auto;
}

.welcome-section h2 {
    margin: 0 0 8px;
    color: #245ca5;
    font-size: 25px;
    font-weight: 800;
}

.welcome-section p {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
    letter-spacing: .1px;
}

.read-more {
    display: inline-block;
    margin-top: 13px;
    color: #222;
    font-size: 14px;
    text-decoration: underline;
}

.welcome-brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 16px;

    min-width: 222px;
    height: 35px;

    padding: 0 18px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    background: #144A87;

    transition: .25s ease;
}

.welcome-brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,.18);
}

.welcome-brochure-btn i {
    font-size: 16px;
}


/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    background: #fff;
    padding: 34px 34px 50px;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
}

.pricing-section h2 {
    color: #245ca5;
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 23px;
}


/* =========================================
   PRICING LAYOUT
========================================= */

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 30px;
    align-items: start;
}


/* =========================================
   TABLE
========================================= */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d8dce1;
    font-size: 14px;
}

.price-table th {
    background: #fff;
    color: #333;
    text-align: left;
    padding: 12px 10px;
    border: 1px solid #d8dce1;
    font-size: 13px;
    font-weight: 700;
}

.price-table td {
    padding: 10px;
    border: 1px solid #d8dce1;
    color: #333;
    height: 52px;
}

.price-table tbody tr:nth-child(odd) {
    background: #f0f0f0;
}

.price-table tbody tr:nth-child(even) {
    background: #fff;
}


/* =========================================
   PRICE BREAKUP BUTTON
========================================= */

.price-breakup {
    background: #285da4;
    color: #fff;

    border: none;
    border-radius: 4px;

    padding: 8px 10px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition: .2s ease;
}

.price-breakup:hover {
    background: #19477f;
}


/* =========================================
   PRICE IMAGE
========================================= */

.pricing-image {
    border: 1px solid #ddd;
    padding: 18px 16px;
    background: #fff;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 7px rgba(0,0,0,.08);
}

.pricing-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}


/* =========================================
   PRICE POPUP
========================================= */

.price-popup {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.65);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 20px;
}

.price-popup.show {
    display: flex;
}

.popup-content {
    position: relative;

    width: 100%;
    max-width: 400px;

    background: #fff;
    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.popup-content h3 {
    color: #245ca5;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
}

.popup-content input {
    width: 100%;
    height: 42px;

    border: 1px solid #ccc;
    border-radius: 4px;

    padding: 0 12px;
    margin-bottom: 12px;

    font-size: 14px;
}

.popup-content form button {
    width: 100%;
    height: 42px;

    border: none;
    border-radius: 4px;

    background: #245ca5;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}

.close-popup {
    position: absolute;

    right: 12px;
    top: 8px;

    border: none;
    background: none;

    font-size: 30px;
    color: #555;

    cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-image {
        max-width: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .welcome-section {
        padding: 28px 18px;
    }

    .welcome-section h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .welcome-section p {
        font-size: 13px;
        line-height: 21px;
        /* text-align: left; */
    }

    .pricing-section {
        padding: 28px 18px 40px;
    }

    .pricing-section h2 {
        font-size: 22px;
        line-height: 29px;
    }

    .price-table {
        min-width: 650px;
    }

    .pricing-image {
        width: 100%;
        padding: 12px;
    }

}

/* =====================================
   MASTER PLAN + FLOOR PLAN
===================================== */

.plan-section {
    background: #fff;
    padding: 34px 26px 25px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.plan-container {
    max-width: 1200px;
    margin: auto;
}

.plan-section h2 {
    color: #245ca5;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 22px;
}


/* =====================================
   MASTER PLAN CARD
===================================== */

.plan-card {
    width: 368px;
    margin: 0 auto;
    padding: 12px;
    border: 1px solid #d8dce1;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.08);
}


/* =====================================
   IMAGE BOX
===================================== */

.plan-image-box {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.plan-image-box img {
    display: block;
    width: 100%;
    height: 255px;
    object-fit: cover;
    transition: transform .35s ease;
}


/* =====================================
   HOVER OVERLAY
===================================== */

.plan-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.48);

    opacity: 0;

    transition: opacity .3s ease;
}

.plan-image-box:hover .plan-overlay {
    opacity: 1;
}

.plan-image-box:hover img {
    transform: scale(1.04);
}


/* =====================================
   VIEW BUTTON
===================================== */

.plan-overlay button {
    border: none;
    border-radius: 4px;

    padding: 10px 18px;

    background: #144A87;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transform: translateY(10px);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.plan-image-box:hover .plan-overlay button {
    transform: translateY(0);
}

.plan-overlay button:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

.plan-overlay button i {
    margin-right: 6px;
}


/* =====================================
   FLOOR PLAN
===================================== */

.floor-section {
    padding-top: 35px;
}

.floor-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;       
}

.floor-card {
    border: 1px solid #d8dce1;
    padding: 12px;
    background: #fff;

    box-shadow:
        0 2px 5px rgba(0,0,0,.06);
}


/* =====================================
   FLOOR IMAGE
===================================== */

.floor-card .plan-image-box img {
    height: 270px;
    object-fit: contain;
    background: #fff;
        filter: blur(1px);
}


/* =====================================
   IMAGE POPUP
===================================== */

.image-viewer {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0,0,0,.85);
}

.image-viewer.show {
    display: flex;
}

.image-viewer img {
    max-width: 90%;
    max-height: 90vh;

    object-fit: contain;

    background: #fff;

    box-shadow: 0 5px 30px rgba(0,0,0,.5);
}

.viewer-close {
    position: fixed;

    top: 15px;
    right: 25px;

    color: #fff;

    font-size: 40px;

    cursor: pointer;

    line-height: 1;
}

.viewer-close:hover {
    color: #ddd;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 900px) {

    .floor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {

    .plan-section {
        padding: 28px 16px;
    }

    .plan-section h2 {
        font-size: 20px;
        line-height: 27px;
    }

    .plan-card {
        width: 100%;
        max-width: 368px;
    }

    .plan-card .plan-image-box img {
        height: 240px;
    }

    .floor-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .floor-card .plan-image-box img {
        height: 260px;
    }

}



/* ==========================================
   COMMON
========================================== */

.gallery-section,
.location-section {
  background: #fff;

  max-width: 1200px;

  margin: 0 auto 12px;

  padding: 18px 25px;

  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.08);
}


h2 {
  color: #0754a5;

  font-size: 20px;

  font-weight: 700;

  line-height: 1.3;
}



/* ==========================================
   SECTION HEADER
========================================== */

.section-header,
.location-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 15px;
}



/* ==========================================
   BUTTON
========================================== */

.gradient-btn {

  border: none;

  color: #fff;

  font-size: 12px;

  font-weight: 600;

  padding: 9px 25px;

  min-width: 145px;

  height: 34px;

  border-radius: 3px;

  cursor: pointer;

  background:
    #144A87;

  /* transform: skew(-3deg); */

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


.gradient-btn:hover {

  opacity: 0.9;

  transform:
    skew(-3deg)
    translateY(-1px);
}



/* ==========================================
   GALLERY
========================================== */

.gallery-wrapper {

  position: relative;

  display: flex;

  align-items: center;

  width: 100%;
}


.gallery-track {

  display: flex;

  gap: 23px;

  width: 100%;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  padding: 0 0 2px;
}


.gallery-track::-webkit-scrollbar {
  display: none;
}



/* ==========================================
   GALLERY CARD
========================================== */

.gallery-card {

  flex: 0 0 calc(
    25% - 18px
  );

  height: 142px;

  overflow: hidden;

  border-radius: 12px;

  background: #eee;
}


.gallery-card img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.35s ease;
}


.gallery-card:hover img {

  transform: scale(1.04);
}



/* ==========================================
   GALLERY ARROWS
========================================== */

.gallery-arrow {

  position: absolute;

  z-index: 5;

  width: 32px;

  height: 32px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);

  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2);

  color: #0754a5;

  font-size: 25px;

  line-height: 25px;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;
}


.gallery-prev {
  left: 8px;
}


.gallery-next {
  right: 8px;
}


.gallery-arrow:hover {

  background: #0754a5;

  color: #fff;
}



/* ==========================================
   LOCATION SECTION
========================================== */

.location-section {

  padding-top: 25px;

  padding-bottom: 30px;
}


.location-header {

  margin-bottom: 18px;
}



/* ==========================================
   LOCATION CONTENT
========================================== */

.location-content {

  display: grid;

  grid-template-columns:
    32% 1fr;

  gap: 40px;

  align-items: start;
}



/* ==========================================
   MAP
========================================== */

.location-map {

  width: 100%;

  height: 350px;

  overflow: hidden;

  border: 1px solid #d8d8d8;

  background: #eee;
}


.location-map img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;
}



/* ==========================================
   CONNECTIVITY
========================================== */

.connectivity-list {
 width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}


.connectivity-item {

  min-height: 34px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  border-top: 1px solid #cfcfcf;

  font-size: 14px;
}


.connectivity-item:last-child {

  border-bottom:
    1px solid #cfcfcf;
}


.connectivity-name {

  display: flex;

  align-items: center;

  gap: 8px;

  color: #222;
}


.location-pin {

  color: #0754a5;

  font-size: 20px;

  line-height: 1;
}


.connectivity-item strong {

  font-size: 14px;

  color: #111;

  white-space: nowrap;
}



/* ==========================================
   RESPONSIVE - TABLET
========================================== */

@media (max-width: 900px) {

  .gallery-card {

    flex-basis:
      calc(33.333% - 16px);

  }


  .location-content {

    grid-template-columns: 40% 1fr;

    gap: 25px;
  }

}



/* ==========================================
   RESPONSIVE - MOBILE
========================================== */

@media (max-width: 650px) {

  .gallery-section,
  .location-section {

    padding: 15px;

    margin-bottom: 10px;
  }


  .section-header,
  .location-header {

    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }


  h2 {

    font-size: 17px;
  }


  .gradient-btn {

    align-self: flex-end;

    min-width: 135px;

    height: 32px;

    font-size: 11px;

    padding: 7px 15px;
  }


  /* Gallery */

  .gallery-track {

    gap: 12px;

    padding-right: 15px;
  }


  .gallery-card {

    flex: 0 0 75%;

    height: 155px;

    border-radius: 10px;
  }


  .gallery-arrow {

    width: 30px;

    height: 30px;
  }


  /* Location */

  .location-content {

    display: flex;

    flex-direction: column;

    gap: 20px;
  }


  .location-map {

    width: 100%;

    height: 230px;

    order: 1;
  }


  .connectivity-list {

    order: 2;
  }


  .connectivity-item {

    min-height: 45px;

    font-size: 13px;
  }


  .connectivity-item strong {

    font-size: 12px;
  }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

  .gallery-card {

    flex-basis: 85%;

    height: 145px;
  }


  .connectivity-item {

    font-size: 12px;
  }


  .connectivity-item strong {

    font-size: 11px;
  }

}


/* =================================
   VIRTUAL TOUR SECTION
================================= */

.virtual-tour-section {
    background: #fff;
    padding: 38px 26px 45px;
    border-top: 1px solid #ddd;
}

.virtual-tour-container {
    max-width: 1200px;
    margin: auto;
}

.virtual-tour-section h2 {
    color: #245ca5;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 22px;
}


/* =================================
   IMAGE BOX
================================= */

.virtual-tour-box {
    position: relative;
    width: 100%;
    height: 430px;

    overflow: hidden;

    border: 1px solid #ddd;
    background: #eee;

    cursor: pointer;
}

.virtual-tour-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


/* =================================
   DARK OVERLAY
================================= */

.virtual-tour-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .20);

    transition: background .3s ease;
}


/* =================================
   HOVER IMAGE
================================= */

.virtual-tour-box:hover img {
    transform: scale(1.03);
}

.virtual-tour-box:hover .virtual-tour-overlay {
    background: rgba(0, 0, 0, .35);
}


/* =================================
   PLAY BUTTON
================================= */

.play-button {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 76px;
    height: 76px;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,.9);

    background: #245ca5;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0,0,0,.35);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.play-button i {
    font-size: 27px;

    margin-left: 4px;
}


/* Play button hover */

.virtual-tour-box:hover .play-button {
    transform: translate(-50%, -50%) scale(1.12);

    background: #a66b3f;

    box-shadow:
        0 7px 25px rgba(0,0,0,.45);
}


/* =================================
   VIDEO POPUP
================================= */

.video-popup {
    position: fixed;

    inset: 0;

    z-index: 99999;

    background: rgba(0,0,0,.85);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;
}

.video-popup.show {
    display: flex;
}


/* =================================
   VIDEO CONTAINER
================================= */

.video-container {
    position: relative;

    width: 90%;
    max-width: 950px;

    aspect-ratio: 16 / 9;

    background: #000;

    box-shadow:
        0 10px 40px rgba(0,0,0,.5);
}

.video-container iframe {
    width: 100%;
    height: 100%;

    border: none;
}


/* =================================
   CLOSE BUTTON
================================= */

.video-close {
    position: absolute;

    top: -45px;
    right: 0;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    color: #fff;

    font-size: 35px;

    cursor: pointer;

    line-height: 30px;
}

.video-close:hover {
    color: #ccc;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .virtual-tour-section {
        padding: 30px 16px 35px;
    }

    .virtual-tour-section h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .virtual-tour-box {
        height: 250px;
    }

    .play-button {
        width: 62px;
        height: 62px;
    }

    .play-button i {
        font-size: 22px;
    }

    .video-popup {
        padding: 15px;
    }

    .video-container {
        width: 100%;
    }

}


/* ==========================================
   AMENITIES SECTION
========================================== */

.amenities-section {

  max-width: 1200px;

  margin: 0 auto 12px;

  padding: 25px 30px 30px;

  background: #fff;

  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.08);
}



/* ==========================================
   HEADER
========================================== */

.amenities-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 20px;
}


.amenities-header h2 {

  margin: 0;

  color: #0754a5;

  font-size: 20px;

  font-weight: 700;
}



/* ==========================================
   WRAPPER
========================================== */

.amenities-wrapper {

  position: relative;

  width: 100%;
}



/* ==========================================
   AMENITIES TRACK
========================================== */

.amenities-track {

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  grid-auto-rows: 218px;

  gap: 16px;

  overflow: hidden;

  scroll-behavior: smooth;
}



/* ==========================================
   CARD
========================================== */

.amenity-card {

  position: relative;

  width: 100%;

  height: 218px;

  overflow: hidden;

  border-radius: 12px;

  background: #eee;

  cursor: pointer;
}


.amenity-card img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.4s ease;
}


.amenity-card:hover img {

  transform: scale(1.05);
}



/* ==========================================
   AMENITY LABEL
========================================== */

.amenity-title {

  position: absolute;

  left: 14px;

  bottom: 10px;

  z-index: 2;

  padding: 5px 10px;

  background:
    rgba(0, 0, 0, 0.82);

  border-left:
    3px solid #0754a5;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.5px;

  line-height: 1;

  white-space: nowrap;
}



/* ==========================================
   ARROWS
========================================== */

.amenities-arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 38px;

  height: 38px;

  border-radius: 50%;

  border: 1px solid #ddd;

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12);

  color: #aaa;

  font-size: 30px;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.amenities-prev {

  left: -18px;
}


.amenities-next {

  right: -18px;
}


.amenities-arrow:hover {

  background: #0754a5;

  color: #fff;

  border-color: #0754a5;
}



/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width: 900px) {

  .amenities-track {

    grid-template-columns:
      repeat(2, 1fr);

    grid-auto-rows: 210px;

    gap: 14px;
  }


  .amenity-card {

    height: 210px;
  }


  .amenities-prev {

    left: -12px;
  }


  .amenities-next {

    right: -12px;
  }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

  .amenities-section {

    padding: 18px 15px 25px;
  }


  .amenities-header {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }


  .amenities-header h2 {

    font-size: 17px;

    line-height: 1.4;
  }


  .amenities-header .gradient-btn {

    align-self: flex-end;
  }


  /*
     On mobile:
     one large card visible
     and horizontal scrolling
  */

  .amenities-track {

    display: flex;

    gap: 12px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding-bottom: 3px;
  }


  .amenities-track::-webkit-scrollbar {
    display: none;
  }


  .amenity-card {

    flex: 0 0 82%;

    height: 190px;

    border-radius: 10px;
  }


  .amenity-title {

    left: 10px;

    bottom: 9px;

    font-size: 11px;

    padding: 5px 8px;
  }


  .amenities-arrow {

    width: 32px;

    height: 32px;

    font-size: 24px;
  }


  .amenities-prev {

    left: -8px;
  }


  .amenities-next {

    right: -8px;
  }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

  .amenity-card {

    flex-basis: 88%;

    height: 175px;
  }


  .amenity-title {

    font-size: 10px;
  }

}


.enquiry-modal {
    position: fixed;
    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.65);

    z-index: 99999;
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-modal-content {
    position: relative;

    width: 90%;
    max-width: 420px;

    background: #fff;

    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 10px 40px rgba(0,0,0,.3);

    animation: popup .3s ease;
}

@keyframes popup {

    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.enquiry-modal-content h2 {
    margin-bottom: 8px;
    color: #245ca5;
}

.enquiry-modal-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

#enquiryForm input {
    width: 100%;
    height: 45px;

    margin-bottom: 12px;
    padding: 0 12px;

    border: 1px solid #ccc;
    border-radius: 4px;

    outline: none;
}

#enquiryForm input:focus {
    border-color: #245ca5;
}

#enquiryForm button {
    width: 100%;
    height: 45px;

    border: none;
    border-radius: 4px;

    background: #144A87;

    color: white;

    font-weight: 600;

    cursor: pointer;
}

.modal-close {
    position: absolute;

    top: 8px;
    right: 12px;

    border: none;
    background: none;

    font-size: 28px;

    cursor: pointer;
}

.consent-box {
    margin: 15px 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
}

.consent-label input[type="checkbox"] {
    width: 16px !important;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-label span {
    flex: 1;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px 25px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

/* SECTION TITLE (optional if you want to add heading) */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

/* PROJECT INFO */
.project-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
  font-size: 13px;
  color: #555;
}

.project-info div {
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.project-info strong {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

/* BULLET LIST */
.info-list {
  padding-left: 18px;
  margin-bottom: 25px;
}

.info-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.info-list strong {
  color: #222;
}

/* DISCLAIMER */
.disclaimer-text {
  font-size: 12px;
  line-height: 1.8;
  color: #777;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #c9a646;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  color: #3b6cb7;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #c9a646;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.divider {
  color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-disclaimer {
    padding: 20px 15px;
  }

  .project-info {
    grid-template-columns: 1fr;
  }

  .disclaimer-text {
    font-size: 11px;
  }
}

/* ================================
   Desktop Floating Buttons
================================ */

.contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    width: 150px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

.contact-btn span {
    font-size: 20px;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #007bff;
}


/* ================================
   Mobile Bottom Tab
================================ */

@media (max-width: 768px) {

    .contact-buttons {
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        flex-direction: row;
        gap: 0;

        background: #fff;

        box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);

        padding: 0;

        /* iPhone safe area */
        padding-bottom: env(safe-area-inset-bottom);
    }

    .contact-btn {
        width: 50%;
        height: 55px;

        border-radius: 0;

        box-shadow: none;

        font-size: 15px;
    }

    .contact-btn:hover {
        transform: none;
    }

    .whatsapp-btn {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

}