* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #fffeed, #1a1a1a);
}


/* ===============================
   HEADER
   =============================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 90px;
    background: #000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
}


/* Logo */

.logo img {
    height: 40px;
    width: auto;
}


/* Desktop nav */

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
    font-family: "Poligon Regular", Arial, sans-serif;
}


/* Hamburger */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 992px) {
    nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 90px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        pointer-events: none;
        overflow-x: hidden;
    }
    nav.active {
        right: 0;
        pointer-events: auto;
    }
}


/* Extra small phones */

@media (max-width: 480px) {
    nav a {
        font-size: 18px;
    }
}


/* ===============================
   SECTIONS
   =============================== */

section:not(.hero) {
    padding: 100px 10% 80px;
    max-width: 100vw;
    overflow-x: hidden;
}


/* ===============================
   HERO SECTION (FINAL FIX)
   =============================== */

/* ================= BASE ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:60px 0;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:2;
}

.hero-content{
  position:relative;
  z-index:3;
  color:#fff;
  max-width:650px;
}

/* Fluid Typography */
.hero-content h1{
  font-size:clamp(26px, 4vw, 48px);
  margin-bottom:15px;
}

.hero-content h2{
  font-size:clamp(16px, 2vw, 24px);
  margin:20px 0;
  font-weight:400;
}

.location-tag{
  display:inline-block;
  background:#c8a96a;
  color:#111;
  padding:8px 18px;
  font-size:14px;
  font-weight:600;
  border-radius:4px;
}

.hero-content ul{
  margin:20px 0;
  padding-left:18px;
}

.hero-content ul li{
  margin-bottom:10px;
  font-size:clamp(14px,1.5vw,16px);
}

.price-box{
  margin-top:25px;
  font-size:clamp(16px,2vw,20px);
}

.price-box span{
  background:#c8a96a;
  padding:8px 15px;
  border-radius:4px;
  font-weight:700;
  color:#111;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width:992px){
  .hero{
    min-height:85vh;
  }
}

/* Mobile */
@media (max-width:768px){

  .hero{
    text-align:center;
    padding:40px 0;
  }

  .hero-content{
    margin:auto;
  }

  .hero-content ul{
    padding-left:0;
    list-style:none;
  }
}

/* ===============================
   HERO FORM
   =============================== */

.hero-form {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-40%);
    width: 300px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(180deg, #cabc88, #ece7b2);
    padding: 15px;
    border-radius: 18px;
    z-index: 2;
    overflow: visible;
}


/* Close Button */

.hero-form-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 18px;
    cursor: pointer;
    color: #000;
    opacity: 0.6;
}

.hero-form-close:hover {
    opacity: 1;
}


/* Heading */

.hero-form h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #000;
}


/* Inputs */

.hero-form input,
.hero-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.7);
    padding: 8px 4px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #000;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

.hero-form textarea {
    resize: none;
    height: 52px;
}


/* Button */

.hero-form button {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1.6px solid #000;
    border-radius: 30px;
    font-size: 13.5px;
    letter-spacing: 1px;
    cursor: pointer;
}

.hero-form button:hover {
    background: #000;
    color: #fff;
}

.hero-form .consent {
    font-size: 10.5px;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    color: #000 !important;
    /* 🔥 FORCE VISIBLE */
    opacity: 1 !important;
}

.hero-form .consent input[type="checkbox"] {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.hero-form .consent label,
.hero-form .consent span {
    flex: 1;
    min-width: 0;
    color: #000 !important;
    /* 🔥 KEY FIX */
    font-weight: 400;
    font-size: inherit;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .hero-form .consent {
        font-size: 10px;
        padding-bottom: 6px;
    }
}


/* ===============================
   iOS SAFARI CONSENT FIX
   =============================== */

@supports (-webkit-touch-callout: none) {
    .hero-form .consent {
        display: block !important;
        color: #000 !important;
        opacity: 1 !important;
        background: transparent !important;
        overflow: visible !important;
    }
    .hero-form .consent input[type="checkbox"] {
        display: inline-block;
        vertical-align: top;
        margin-right: 6px;
        margin-top: 3px;
    }
    .hero-form .consent {
        -webkit-text-fill-color: #000 !important;
        /* 🔥 KEY FIX */
    }
}

@media (max-width: 768px) {
    .hero-form {
        position: relative;
        width: 92%;
        max-width: 92%;
        margin: 20px auto;
        right: auto;
        top: auto;
        transform: none;
    }
}

@supports (-webkit-touch-callout: none) {
    body {
        overflow-x: hidden !important;
    }
    * {
        max-width: 100vw;
    }
}


/* animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* OVERVIEW CENTER */


/* OVERVIEW SECTION */


/* =========================
   OVERVIEW SECTION
========================= */

#overview {
    text-align: center;
    padding: 80px 20px;
}

.overview-section {
    padding: 100px 20px;
    background: #d1d0d0;
    color: #0e0d0d;
}

.overview-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HEADING
========================= */

.overview-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 600;
}

.overview-heading::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #c8a96a;
    display: block;
    margin: 12px auto 0;
}

/* =========================
   PARAGRAPH
========================= */

.overview-short {
    font-size: 18px;
    line-height: 1.9;
    color: #080808;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* =========================
   BUTTON
========================= */

.btn-center {
    text-align: center;
    margin-top: 35px;
}

.overview-btn {
    padding: 14px 35px;
    background: #c8a96a;
    color: #111;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.overview-btn:hover {
    background: #fff;
    color: #000;
}

/* =========================
   MODAL BACKGROUND
========================= */

.overview-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    overflow-y: auto;
}

/* =========================
   MODAL BOX
========================= */

.modal-content {
    background: linear-gradient(145deg, #f7f6f5, #e0d9c5);
    max-width: 750px;
    width: 100%;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    color: #333;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

/* Title */
.modal-content h3 {
    margin-bottom: 20px;
    color: #8c6b1f;
    text-align: center;
    font-size: 26px;
}

/* Scroll Area */
.modal-scroll {
    overflow-y: auto;
    padding-right: 10px;
}

.modal-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: #c8a96a;
    border-radius: 10px;
}

.modal-scroll p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #8c6b1f;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media (max-width: 992px) {
    .overview-heading {
        font-size: 34px;
    }

    .overview-short {
        font-size: 17px;
    }

    .modal-content {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    #overview {
        padding: 60px 15px;
    }

    .overview-section {
        padding: 70px 15px;
    }

    .overview-heading {
        font-size: 26px;
    }

    .overview-short {
        font-size: 15px;
        text-align: justify;
    }

    .overview-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .modal-content {
        padding: 25px;
        margin: 15% auto;
        max-height: 80vh;
    }

    .modal-content h3 {
        font-size: 20px;
    }

    .modal-scroll p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .overview-heading {
        font-size: 2px;
    }

    .overview-short {
        font-size: 14px;
    }
}


/* ===== MODERN PRICE TABLE (WHITE THEME) ===== */


/* PRICE SECTION */

#price {
    padding: 60px 20px;
    text-align: center;
}


/* /* PRICE LIST HEADING – SAME AS OVERVIEW */

#price h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #111;
    text-align: center;
}


/* TABLE WRAPPER */

.price-table {
    max-width: 900px;
    /* ❌ full width nahi */
    margin: 40px auto 0;
    /* center */
    overflow-x: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* TABLE */

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    /* ❌ black removed */
}


/* HEADER */

.price-table th {
    background: #f4f4f4;
    color: #111;
    padding: 18px 16px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    font-family: Poligon Regular;
}


/* CELLS */

.price-table td {
    padding: 18px 16px;
    text-align: center;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
    font-family: Poligon Regular;
}


/* HOVER EFFECT */

.price-table tbody tr:hover {
    background: #fafafa;
}


/* REMOVE LAST BORDER */

.price-table tbody tr:last-child td {
    border-bottom: none;
}


/* PRICE HIGHLIGHT */

.price {
    color: #b08d3c;
    /* luxury gold */
    font-weight: 600;
    font-size: 16px;
}


/* FLOOR SECTION */

#floor {
    padding: 60px 20px;
    text-align: center;
}


/* SAME HEADING */

.section-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #111;
}


/* ===============================
   FLOOR GALLERY (3 IN ONE LINE)
   =============================== */

.floor-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in one row */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}


/* ITEM */

.floor-item {
    position: relative;
    text-align: center;
}


/* TYPOLOGY NAME */

.floor-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}


/* IMAGE */

.floor-item img {
    width: 100%;
    max-width: 330px;
    /* keeps size small */
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.floor-item img:hover {
    transform: scale(1.04);
}


/* ===============================
   FORM POPUP (UNCHANGED LOGIC)
   =============================== */

.floor-form {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 20px;
}

.floor-form h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.floor-form input {
    width: 85%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
}

.floor-form button {
    padding: 10px 30px;
    background: #b08d3c;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}


/* CLOSE */

.floor-form .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}


/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .floor-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .floor-gallery {
        grid-template-columns: 1fr;
    }
}


/* ================= AMENITIES SECTION ================= */

/* SECTION */
#amenities {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f5f5f5, #eaeaea);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* WRAPPER */
.amenities-wrapper {
    overflow: hidden;
}

/* TRACK */
.amenities-track {
    display: flex;
    gap: 25px;
    will-change: transform;
}

/* CARD */
.amenity-card {
    min-width: 320px;
    height: 240px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.4s ease;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.amenity-card:hover img {
    transform: scale(1.1);
}

/* TEXT OVERLAY */
.amenity-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

/* ===== MOBILE SLIDER VERSION ===== */
@media (max-width:768px){

   #amenities{
      overflow: hidden;
   }

   .amenities-wrapper{
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
   }

   .amenities-wrapper::-webkit-scrollbar{
      display: none; /* hide scrollbar */
   }

   .amenities-track{
      display: flex !important;
      gap: 15px;
      padding: 10px 5px;
      transform: none !important;
   }

   .amenity-card{
      flex: 0 0 85%;
      max-width: 85%;
      scroll-snap-align: center;
      border-radius: 12px;
   }

   .amenity-card img{
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
   }
}


#gallery-premium {
    padding: 80px 5%;
    background: #f7f5f0;
    text-align: center;
}

#gallery-premium .section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Modern grid */
.modern-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */
@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.08);
    }
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    font-weight: 600;
    opacity: 1;
    font-size: 16px;
}

/* Tablet */
@media (max-width: 992px) {
    .modern-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .modern-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-item.large,
    .gallery-item.tall { grid-row: span 1; }
    #gallery-premium .section-title {
        font-size: 30px;
    }
}



/* GALLERY */

.hex-gallery {
    max-width: 900px;
    margin: 0 auto;
}


/* EACH ROW */

.hex-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: -60px;
    /* overlap for honeycomb look */
}


/* HEX */

.hex {
    width: 240px;
    height: 260px;
    clip-path: polygon( 50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex:hover {
    transform: translateY(-8px);
}


/* MOBILE */

@media(max-width:768px) {
    .hex-row {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .hex {
        width: 200px;
        height: 220px;
    }
}


/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}


/* CLOSE */

.lightbox .close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


/* NAV */

.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}


/* MOBILE */

@media(max-width:768px) {
    .lightbox .nav {
        font-size: 40px;
    }
}


/* LOCATION SECTION */

#location {
    padding: 100px 20px;
    background: #f7f5f0;
}


/* SAME HEADING */

.section-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 70px;
    color: #111;
}


/* WRAPPER */

.location-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}


/* LEFT CONTENT */

.location-info {
    background: #fff;
    padding: 45px;
    border-radius: 1px;
    box-shadow: 0 30px 70px rgba(102, 100, 100, 0.08);
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
    font-family: Poligon Regular;
}


/* LIST */

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
    font-family: Poligon Regular;
}

.location-list li span {
    font-weight: 600;
    color: #302815;
}


/* RIGHT IMAGE */

.location-image {
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* MOBILE */

@media(max-width:900px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    .location-info h3 {
        font-size: 26px;
    }
}


/* OTHER PROJECTS */

.other-projects {
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* CARD */

.project-card {
    background: #d4d2d2;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12, 12, 12, 0.3);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* INFO */

.project-info {
    padding: 20px;
    text-align: left;
    font-family: Poligon Regular;
}

.project-info h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: Poligon Regular;
}

.project-info p {
    font-size: 20px;
    margin-bottom: 6px;
    font-family: Poligon Regular;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #080808;
    margin-top: 10px;
    font-family: Poligon Regular;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}


/* CONTACT SECTION */

#contact {
    padding: 100px 20px;
    background: #f7f5f0;
}


/* SAME HEADING */

.section-title {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 70px;
    color: #111;
}


/* WRAPPER */

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}


/* LEFT INFO */

.contact-info {
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    font-family: Poligon Regular;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 28px;
    font-family: Poligon Regular;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    font-family: Poligon Regular;
    margin-bottom: 30px;
    font-size: 16px;
}


/* INFO ITEMS */

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: #111;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
}


/* RIGHT FORM CARD (SAME AS LEFT) */

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    align-items: center;
}

.minimal-form {
    max-width: 100%;
    margin: 0;
}


/* Heading center */

.minimal-form h3 {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-weight: 500;
}


/* Remove box completely */

.minimal-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}


/* Form rows */

.minimal-form form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}


/* Each line */

.form-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    column-gap: 18px;
}


/* Labels */

.form-row label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #000;
    font-weight: 500;
}


/* Inputs underline only */

.form-row input {
    border: none;
    border-bottom: 1.5px solid #000;
    background: transparent;
    padding: 6px 0;
    font-size: 14px;
    outline: none;
}


/* Focus effect */

.form-row input:focus {
    border-bottom: 2px solid #000;
}


/* Submit button */

.minimal-form button {
    margin-top: 30px;
    width: 140px;
    padding: 10px 0;
    border: 1.5px solid #000;
    background: transparent;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}


/* Button hover */

.minimal-form button:hover {
    background: #000;
    color: #fff;
}


/* ===============================
   MOBILE FRIENDLY
   =============================== */

@media (max-width: 768px) {
    .minimal-form {
        margin: 0 auto;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .form-row label {
        font-size: 11px;
    }
}


/* MOBILE */

@media(max-width:900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


/* DISCLAIMER FOOTER */

.disclaimer-footer {
    background: #fbf6ec;
    padding: 20px 8px;
    border-top: 1px solid #e6d8b5;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.disclaimer-content p {
    font-size: 10px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 2px;
}

.disclaimer-content .copyright {
    font-size: 10px;
    margin-top: 2px;
    color: #111;
}


/* -------- SCROLL ANIMATION -------- */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ===== MODERN POPUP ===== */

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-box {
    width: 420px;
    max-width: 90%;
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
    animation: slideUp 0.6s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-box h3 {
    color: #f8f6ef;
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.popup-box input {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.popup-box input:focus {
    outline: none;
    border-color: #f8f6ef;
    box-shadow: 0 0 0 2px rgba(248, 246, 239, 0.25);
}


/* SUBMIT BUTTON ONLY */

.popup-box button:not(.popup-close) {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: linear-gradient(135deg, #a5a4a2, #f8f6ef);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.popup-box button:not(.popup-close):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}


/* CLOSE BUTTON TOP RIGHT */

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}


/* Variations */

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-zoom {
    transform: scale(0.8);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

.reveal-zoom.active {
    transform: scale(1);
}


/* POPUP */

.popup-form {
    position: fixed;
    inset: 0;
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-inner {
    width: 360px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.popup-inner h3 {
    text-align: center;
    margin-bottom: 20px;
}

.popup-inner input,
.popup-inner textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    margin-bottom: 18px;
}

.popup-inner button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}


/* ===============================
   MODERN REAL ESTATE POPUP FORM
   =============================== */


/* Overlay */

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* Main Container */

.popup-container {
    width: 60%;
    /* overall chota */
    max-width: 720px;
    /* max width kam */
    height: 460px;
    /* height kam */
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    background: #f4f4f4;
}


/* LEFT SIDE IMAGE */

.popup-image {
    width: 70%;
    background-image: url("assets/images/pop up lga do.jpg.jpeg");
    /* CHANGE IMAGE PATH */
    background-size: cover;
    background-position: center;
    position: relative;
}

.popup-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
}


/* RIGHT FORM CONTENT */

.popup-content {
    width: 60%;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f4f4;
}


/* Close Button */

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #000;
}


/* Heading */

.popup-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #111;
    font-family: Poligon Regular;
}


/* UNDERLINE INPUT STYLE */

.popup-content input,
.popup-content textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.6);
    padding: 8px 4px;
    /* chota height */
    margin-bottom: 16px;
    font-size: 18px;
    font-family: inherit;
    font-family: Poligon Regular;
}


/* Placeholder */

.popup-content input::placeholder,
.popup-content textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-size: 13px;
}


/* Focus effect */

.popup-content input:focus,
.popup-content textarea:focus {
    outline: none;
    border-bottom: 2px solid #000;
}


/* Textarea compact */

.popup-content textarea {
    resize: none;
    height: 70px;
}


/* ===============================
   POPUP SUBMIT BUTTON – MODERN
   =============================== */

.popup-content button[type="submit"] {
    align-self: center;
    /* center in flex column */
    width: 180px;
    /* fixed modern width */
    padding: 12px 0;
    margin-top: 10px;
    background: transparent;
    color: #000;
    border: 1.8px solid #000;
    /* rectangular border */
    border-radius: 4px;
    /* sharp modern corners */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* Hover – BLACK ONLY */

.popup-content button[type="submit"]:hover {
    background: #000;
    color: #fff;
}


/* ===============================
 /* ===============================
  
/* ===============================
   MOBILE RESPONSIVE
   =============================== */

@media (min-width: 1400px) {
    section:not(.hero) {
        padding: 100px 0;
    }
    @media (max-width: 768px) {
        /* GLOBAL */
        body {
            overflow-x: hidden;
        }
        section {
            padding: 60px 20px !important;
        }
        .section-title {
            font-size: 28px;
            margin-bottom: 35px;
        }
    }
    @media (max-width: 768px) {
        .price-table {
            border-radius: 12px;
        }
        .price-table th,
        .price-table td {
            font-size: 14px;
            padding: 12px;
        }
    }
    @media (max-width: 768px) {
        .floor-gallery {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    @media (max-width: 768px) {
        .hex-row {
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .hex {
            width: 180px;
            height: 200px;
        }
    }
    @media (max-width: 900px) {
        .location-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .location-info {
            padding: 30px;
        }
    }
    @media (max-width: 992px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
        .project-card img {
            height: 240px;
        }
    }
    @media (max-width: 900px) {
        .contact-wrapper {
            grid-template-columns: 1fr;
        }
        .contact-info,
        .contact-form {
            padding: 30px;
        }
    }
}


/* FLOATING CONTACT WRAPPER */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* COMMON BUTTON STYLE */

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}


/* SVG ICON */

.float-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    pointer-events: none;
}


/* COLORS */

.float-btn.phone {
    background: #000;
}

.float-btn.whatsapp {
    background: #25d366;
}


/* BLINK + SOFT PULSE */

@keyframes blinkPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
}

.float-btn.whatsapp {
    animation: blinkPulse 1.6s infinite;
}

.float-btn.phone {
    animation: blinkPulse 2.3s infinite;
}


/* HOVER EFFECT */

.float-btn:hover {
    transform: scale(1.12);
    animation-play-state: paused;
}


/* MOBILE SIZE */

@media (max-width: 768px) {
    .float-btn {
        width: 48px;
        height: 48px;
    }
    .float-btn svg {
        width: 20px;
        height: 20px;
    }
}


/* ===============================
   POPUP – MOBILE FINAL FIX
   =============================== */

@media (max-width: 768px) {
    /* Overlay */
    .popup {
        padding: 16px;
        align-items: center;
        justify-content: center;
    }
    /* Container */
    .popup-container {
        width: 100% !important;
        max-width: 380px !important;
        height: auto !important;
        flex-direction: column !important;
        border-radius: 16px;
        overflow: hidden;
    }
    /* FORM */
    .popup-content {
        width: 100% !important;
        padding: 22px 18px 26px !important;
        background: #f4f4f4;
    }
    .popup-content h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 18px;
    }
    .popup-content input,
    .popup-content textarea {
        font-size: 16px;
        /* iOS zoom fix */
        padding: 10px 4px;
        margin-bottom: 14px;
    }
    .popup-content textarea {
        height: 60px;
    }
    .popup-content button[type="submit"] {
        width: 100%;
        margin-top: 12px;
        padding: 12px 0;
        font-size: 14px;
    }
    .popup-close {
        top: 10px;
        right: 12px;
        font-size: 20px;
    }
}