/* ============================================
   MALIBU BAY GOA — LANDING PAGE STYLES
   ============================================ */

:root {
  --color-tan: #c9a876;        /* warm sand / cane furniture */
--color-tan-dark: #a3814f;   /* teak wood, deeper accent */
--color-dark: #23231f;       /* rich espresso, near-black for text/footer */
--color-text: #3a352c;       /* warm charcoal for body copy */
--color-muted: #7d7565;      /* soft taupe for secondary text */
--color-bg-light: #f7f1e6;   /* whitewashed villa wall / linen */
--color-white: #fffdf8;      /* warm off-white, not clinical */
--color-green: #2f4a3e;      /* palm / cashew leaf deep green */
--color-blue-deep: #0f5c66;  /* Arabian Sea at dusk (teal-blue) */
--color-gold: #b8863f;       /* brass fittings, sunset accent */
--color-terracotta: #b5623e; /* Goan roof tiles, for CTAs/highlights */
--color-whatsapp: #25d366;   /* keep true WhatsApp green for brand recognition */

  /* "Avenir Next LT" is a licensed font (not on Google Fonts). If you have the
     font files, add an @font-face rule above pointing to them and the stack
     below will pick it up automatically. Until then it falls back to the
     closest match already installed on the user's system. */
  --font-heading: "Avenir-Next-LT", "sans-serif";
  --font-body: "Arial, sans-serif";
  --font-script: 'Great Vibes', cursive;

  --header-height: 84px;
  --transition: 0.3s ease;
}

/* If you own the licensed font files, uncomment and point to them: */
/*
@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("/fonts/AvenirNextLTPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("/fonts/AvenirNextLTPro-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
  text-transform: none;
}

.btn-enquire {
  background: var(--color-tan);
  color: #fff;
}
.btn-enquire:hover { background: var(--color-tan-dark); }

.btn-submit {
  background: var(--color-tan);
  color: #fff;
  padding: 13px 36px;
}
.btn-submit:hover { background: var(--color-tan-dark); }

.btn-outline {
  background: var(--color-tan);
  color: #fff;
  padding: 11px 26px;
}
.btn-outline:hover { background: var(--color-tan-dark); }

.btn-full { width: 100%; margin-top: 8px; }

/* =========================
   HEADER
========================= */

:root{
    --header-height: 86px;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.header-inner{
    max-width:1571px;
    height:var(--header-height);
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 40px;
    gap:40px;
}

/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    z-index:1100;
}

.logo img{
    display:block;
    height:150px;       /* Increase or decrease as needed */
    width:auto;
    max-width:100%;
    object-fit:contain;
    margin-top: 23px !important;
}

/* =========================
   NAVIGATION
========================= */

.main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex:1;
    gap:30px;
}

.main-nav ul{
    display:flex;
    align-items:center;
    justify-content:flex-end;

    list-style:none;
    margin:0;
    padding:0;

    gap:26px;

    flex-wrap:nowrap;
}

.main-nav li{
    white-space:nowrap;
}

.nav-link{
    display:block;

    font-size:13px;
    /* font-weight:600; */
    letter-spacing:.8px;
    text-transform:uppercase;
    text-decoration:none;

    color:#222;

    position:relative;

    padding:6px 0;

    transition:.3s;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--color-tan);
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-enquire-btn{
    white-space:nowrap;
    flex-shrink:0;
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;

    background:none;
    border:none;

    cursor:pointer;

    padding:8px;

    flex-shrink:0;

    z-index:1100;
}

.hamburger span{
    width:26px;
    height:2px;
    border-radius:5px;
    background:#222;
    transition:.3s;
}

.hamburger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   TABLET
========================= */

@media (max-width:1200px){

    .header-inner{
        padding:0 25px;
    }

    .logo img{
        height:87px;
    }

    .main-nav ul{
        gap:18px;
    }

    .nav-link{
        font-size:12px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    :root{
        --header-height:72px;
    }

    .header-inner{
        padding:0 18px;
        gap:10px;
    }

    .logo img{
        height:125px;
        margin-top:23px !important;
    }

    .hamburger{
        display:flex;
    }

    .main-nav{

        position:fixed;

        top:0;
        right:-100%;

        width:300px;
        max-width:82vw;

        height:100vh;

        background:#fff;

        flex-direction:column;
        justify-content:center;
        align-items:flex-start;

        padding:60px 30px;

        transition:.35s;

        box-shadow:-5px 0 20px rgba(0,0,0,.15);
    }

    .main-nav.active{
        right:0;
    }

    .main-nav ul{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:22px;
    }

    .nav-link{
        font-size:15px;
    }

    .nav-enquire-btn{
        width:100%;
        margin-top:20px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:400px){

    .logo img{
        height:46px;
    }

    .header-inner{
        padding:0 14px;
    }

}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
}
.hero-visual {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}


/* Desktop Only */
@media (min-width: 992px) {
    .hero-form-bar {
        margin-top: 12px;
        margin-right: 30px;
        margin-left: 30px;
        margin-bottom: -48px;
    }
}


.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 55%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
/* ===========================
   Desktop
=========================== */

.hero-title {
  font-family: "Trajan Pro", serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  max-width: 600px;
  line-height: 1.35;
  letter-spacing: 0.8px;
}

.hero-tagline {
  font-family: "Trajan Pro", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
  margin-top: 10px;
  max-width: 500px;
  line-height: 1.6;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .hero-tagline {
    font-size: 16px;
  }
}

/* ===========================
   Mobile
=========================== */

@media (max-width: 768px) {
  .hero-title {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 8px;
  }
}

/* ===========================
   Small Mobile
=========================== */

@media (max-width: 480px) {
  .hero-title {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 13px;
  }
}

/* Desktop: form bar overlaps bottom edge of the hero image, same as reference design */
.hero-form-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;

    display: flex;
    align-items: stretch;

    background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp") center center / cover no-repeat;
}

.hero-form-label {
    background: var(--color-tan-dark);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 36px;
    min-width: 210px;

    font-size: 18px;
    font-weight: 600;
}

.hero-form {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 12px 24px;
}

.hero-form .form-group {
    flex: 1;
    min-width: 220px;
    margin: 0;
}

.hero-form input {
    width: 100%;
    height: 48px;

    padding: 0 16px;

    border: 1px solid #d8d5d0;
    border-radius: 4px;

    font-size: 14px;
    line-height: 48px;

    box-sizing: border-box;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--color-tan);
}

.hero-form .btn-submit {
    height: 48px;
    padding: 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

/* .error-msg {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 3px);

    font-size: 11px;
    color: #d32f2f;
} */


@media (max-width: 768px) {

.hero-form-bar{
    position: static;
    flex-direction: column;
}

.hero-form-label{
    width: 100%;
    min-width: 100%;
    padding: 12px 20px;
    font-size: 16px;
}

.hero-form{
    padding: 14px;
    gap: 10px;
    flex-direction: column;
}

.hero-form .form-group{
    width: 100%;
    min-width: 100%;
}

.hero-form input{
    height: 42px;
    font-size: 14px;
}

.hero-form .btn-submit{
    width: 100%;
    height: 42px;
    padding: 0;
}

}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  padding-top: 60px;
}
.leaf-icon { width: 46px; margin: 0 auto 18px; opacity: 0.8; }
.section-head h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   OVERVIEW
   ============================================ */
.overview {
  background: var(--color-bg-light);
  padding-bottom: 70px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
}
.overview-text {
  padding: 60px;
}
.overview-text h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-dark);
}
.overview-text p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.9;
}
.overview-text p:not(:last-child) { margin-bottom: 16px; }
.overview-text p.overview-lead {
  color: var(--color-dark);
  font-weight: 500;
  padding-top: 6px;
  border-top: 1px solid rgba(163,129,79,0.25);
}
.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* ============================================
   HYBRID ESTATE MODEL — PILLAR CARDS
   ============================================ */
.hybrid-model { background: #fff; padding-bottom: 90px; }
.pillars-heading {
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-tan-dark);
  margin-bottom: 34px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
   background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp");
  border-top: 3px solid var(--color-tan);
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(43,43,40,0.06);
}
.pillar-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 14px;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery{
    background:#f6f5f3;
    padding-bottom:140px;
}

.gallery-wrapper{
    width:100%;
    position:relative;
}

.gallery-image-wrap{
    width:100%;
    height:600px;
    overflow:hidden;
    position:relative;
}

.gallery-image-wrap img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:.6s;
}

.gallery-image-wrap img.active{
    opacity:1;
}

.gallery-caption{
    position: absolute;
    right: 7%;
    bottom: -75px;
    width: 420px;

    background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp");

    padding: 32px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: hidden;
}

.gallery-nav-row{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.gallery-arrow{
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
    color:#555;
    width:auto;
    height:auto;
    padding:0;
}

.gallery-count{
    font-size:13px;
    color:#777;
    margin-left:6px;
}

.gallery-info{
    text-align:left;
}

.gallery-info h3{
    font-size:24px;
    font-weight:500;
    line-height:1.35;
    margin-bottom:16px;
    color:#555;
}

.gallery-info p{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

@media (max-width:991px){

.gallery-wrapper{
    width:auto;
    margin:0 15px;
}

.gallery-image-wrap{
    height:320px;
}

.gallery-caption{
    position:static;
    width:100%;
    box-shadow:none;
    padding:25px;
}

.gallery-info{
    text-align:center;
}

.gallery-nav-row{
    justify-content:center;
}

}


.sanctuary-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto 60px;
}
.sanctuary-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.sanctuary-pillar-num {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-tan);
  line-height: 1;
  flex-shrink: 0;
}
.sanctuary-pillar h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.sanctuary-pillar p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .sanctuary-pillars { grid-template-columns: 1fr; gap: 30px; }
}

.floorplan{
    background:#f6f5f3;
    padding-bottom:140px;
}

.floorplan-wrapper{
    width:100%;
    position:relative;
}

.floorplan-image-wrap{
    width:100%;
    height:600px;
    overflow:hidden;
    position:relative;
}

.floorplan-image-wrap img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:.6s;
}

.floorplan-image-wrap img.active{
    opacity:1;
}

.floorplan-caption{
    position: absolute;
    right: 7%;
    bottom: -75px;
    width: 420px;

    background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp");

    padding: 32px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: hidden;
}

.floorplan-nav-row{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.floorplan-arrow{
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
    color:#555;
    width:auto;
    height:auto;
    padding:0;
}

.floorplan-count{
    font-size:13px;
    color:#777;
    margin-left:6px;
}

.floorplan-info{
    text-align:left;
}

.floorplan-info h3{
    font-size:24px;
    font-weight:500;
    line-height:1.35;
    margin-bottom:16px;
    color:#555;
}

.floorplan-info p{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

@media (max-width:991px){

.floorplan-wrapper{
    width:auto;
    margin:0 15px;
}

.floorplan-image-wrap{
    height:320px;
}

.floorplan-caption{
    position:static;
    width:100%;
    box-shadow:none;
    padding:25px;
}

.floorplan-info{
    text-align:center;
}

.floorplan-nav-row{
    justify-content:center;
}

}


.geo-taglines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  list-style: none;
}
.geo-taglines li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-tan-dark);
  background: var(--color-bg-light);
  border: 1px solid rgba(163,129,79,0.35);
  padding: 10px 20px;
  border-radius: 30px;
}

.location{
    background:#f6f5f3;
    padding-bottom:140px;
}

.location-wrapper{
    width:100%;
    position:relative;
}

.location-map-wrap{
    width:100%;
    height:600px;
    overflow:hidden;
    position:relative;
    background:#e8e6e1;
}

.location-map-frame{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(.15) contrast(1.05) saturate(1.1);
}

/* Pins */
.location-pins{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.location-pin{
    position:absolute;
    transform:translate(-50%,-100%);
    display:flex;
    flex-direction:column;
    align-items:center;
    opacity:.45;
    transition:.5s;
}

.location-pin .dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#0e5b78;
    border:2px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,.25);
    position:relative;
}

.location-pin .ring{
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid #0e5b78;
    opacity:0;
    transform:scale(.6);
}

.location-pin.active{
    opacity:1;
    transform:translate(-50%,-115%) scale(1.15);
    z-index:2;
}

.location-pin.active .dot{
    background:#b5623e;
}

.location-pin.active .ring{
    animation:pinPulse 1.8s ease-out infinite;
    border-color:#b5623e;
}

.location-pin .label{
    margin-top:6px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.3px;
    color:#2b2b28;
    background:#fff;
    padding:3px 9px;
    border-radius:20px;
    white-space:nowrap;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
    opacity:0;
    transform:translateY(4px);
    transition:.35s;
}

.location-pin.active .label{
    opacity:1;
    transform:translateY(0);
}

@keyframes pinPulse{
    0%   { opacity:.9; transform:scale(.6); }
    100% { opacity:0;  transform:scale(2.1); }
}

.location-caption{
    position: absolute;
    right: 7%;
    bottom: -75px;
    width: 420px;

    background: white;

    padding: 32px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: hidden;
}

.location-nav-row{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.location-arrow{
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
    color:#555;
    width:auto;
    height:auto;
    padding:0;
}

.location-count{
    font-size:13px;
    color:#777;
    margin-left:6px;
}

.location-info{
    text-align:left;
}

.location-distance{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
    color:#0e5b78;
    background:rgba(14,91,120,.08);
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:14px;
}

.location-info h3{
    font-size:24px;
    font-weight:500;
    line-height:1.35;
    margin-bottom:16px;
    color:#555;
}

.location-info p{
    font-size:14px;
    line-height:1.8;
    color:#666;
}

@media (max-width:991px){

.location-wrapper{
    width:auto;
    margin:0 15px;
}

.location-map-wrap{
    height:320px;
}

.location-caption{
    position:static;
    width:100%;
    box-shadow:none;
    padding:25px;
}

.location-info{
    text-align:center;
}

.location-info .location-distance{
    display:block;
    width:fit-content;
    margin:0 auto 14px;
}

.location-nav-row{
    justify-content:center;
}

.location-pin .label{
    font-size:10px;
}

}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --eg-bg-overlay: rgba(8, 7, 5, 0.78);
  --eg-surface: #14120E;
  --eg-surface-raised: #1A1712;
  --eg-gold: #B08D57;
  --eg-gold-light: #D9C08E;
  --eg-ivory: #F3EFE6;
  --eg-muted-2: #A39A88;
  --eg-border: rgba(176, 141, 87, 0.28);
  --eg-danger: #D9776B;
  --eg-font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --eg-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.eg-overlay {
  position: fixed;
  inset: 0;
  background: var(--eg-bg-overlay);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.eg-overlay.active { display: flex; }

.eg-box {
  background: var(--eg-surface);
  max-width: 520px;
  width: 100%;
  padding: 52px 48px 44px;
  position: relative;
  border-radius: 2px;
  border: 1px solid var(--eg-border);
  box-shadow: 0 50px 100px rgba(0,0,0,0.55);
  animation: egIn 0.4s cubic-bezier(.2,.7,.3,1);
  max-height: 92vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.eg-box * { box-sizing: border-box; }

@keyframes egIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Signature: open brass corner brackets, like a sealed dossier folder */
.eg-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--eg-gold);
  opacity: 0.6;
  pointer-events: none;
}
.eg-corner-tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.eg-corner-br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.eg-close {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--eg-muted-2);
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: color .25s, transform .25s;
}
.eg-close:hover { color: var(--eg-gold-light); transform: rotate(90deg); }

.eg-header { text-align: center; margin-bottom: 32px; }

.logo-img {
  display: block;
  max-width: 140px;
  width: 100%;
  height: auto;
  margin: 0 auto 22px;
}

/* Small dotted "token" indicator — a quiet nod to the "secure token access" copy */
.eg-token {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.eg-token-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--eg-gold);
  opacity: 0.7;
}
.eg-token-dot:nth-child(2) { opacity: 1; }

.eg-eyebrow {
  display: block;
  font-family: var(--eg-font-body);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--eg-gold-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.eg-box h3 {
  font-family: var(--eg-font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--eg-ivory);
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

.eg-sub {
  font-family: var(--eg-font-body);
  font-size: 13px;
  color: var(--eg-muted-2);
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto;
}

.eg-field {
  margin-bottom: 18px;
  text-align: left;
  position: relative;
}

.eg-field label {
  display: block;
  font-family: var(--eg-font-body);
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--eg-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eg-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--eg-border);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--eg-font-body);
  background: var(--eg-surface-raised);
  color: var(--eg-ivory);
  transition: border-color .25s, box-shadow .25s, padding-bottom .2s;
}

.eg-field input::placeholder { color: #6E6656; }

.eg-field input:focus {
  outline: none;
  border-color: var(--eg-gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}

.eg-field input.invalid {
  border-color: var(--eg-danger);
  padding-bottom: 28px; /* makes room inside the box for the error line */
}

/* Error message lives inside the input's own box — anchored, clipped, never overflows */
.eg-error {
  display: none;
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 9px;
  color: var(--eg-danger);
  font-family: var(--eg-font-body);
  font-size: 11px;
  line-height: 1.2;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eg-error.show { display: block; }

.eg-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px 20px;
  background: var(--eg-gold);
  border: 1px solid var(--eg-gold);
  border-radius: 2px;
  color: #14120E;
  font-family: var(--eg-font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.eg-submit:hover { background: var(--eg-gold-light); border-color: var(--eg-gold-light); }
.eg-submit:active { transform: scale(0.99); }
.eg-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.eg-success {
  display: none;
  color: var(--eg-gold-light);
  text-align: center;
  font-family: var(--eg-font-body);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 16px;
}
.eg-success.show { display: block; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .eg-box { padding: 44px 28px 36px; max-width: 460px; }
  .eg-box h3 { font-size: 27px; }
  .logo-img { max-width: 116px; }
}

@media (max-width: 400px) {
  .eg-box { padding: 36px 20px 30px; }
  .eg-box h3 { font-size: 24px; }
  .eg-sub { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .eg-box { animation: none; }
  .eg-close { transition: none; }
}

/* ===============



=============================
   AMENITIES
   ============================================ */
.amenities { background: var(--color-bg-light); padding-bottom: 80px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}
.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.amenity-card:hover img { transform: scale(1.08); }
.amenity-label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(60,55,48,0.75);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  width: 100%;
}

/* Mobile-only carousel controls (grid itself becomes a swipeable single-card
   scroller via the media query further down). Hidden on desktop. */
.amenities-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}

/* ============================================
   AMENITY MATRIX
   ============================================ */
.amenity-matrix { background: var(--color-bg-light); padding-bottom: 90px; }
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.matrix-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43,43,40,0.06);
}
.matrix-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.matrix-card-text { padding: 26px 26px 30px; }
.matrix-card-text h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.matrix-card-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
}
@media (max-width: 900px) {
  .matrix-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .matrix-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TOPOGRAPHY BAND
   ============================================ */
.topography-band {
  position: relative;
  background:
      linear-gradient(rgba(15, 35, 55, 0.75), rgba(15, 35, 55, 0.75)),
      url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?q=90&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 90px 24px;
}
.topography-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.topography-inner h2 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.topography-inner p {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.92;
}

/* ============================================
   LIFESTYLE SECTION
   ============================================ */
.lifestyle{
    background: var(--color-bg-light);
    max-width: 1250px;
    margin: 0 auto;
}

.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.lifestyle-split--reverse .lifestyle-img { order: 2; }
.lifestyle-split--reverse .lifestyle-text { order: 1; }

.lifestyle-img { overflow: hidden; }
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }

.lifestyle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.lifestyle-text--dark {
    position: relative;
    background:
        linear-gradient(rgba(15, 35, 55, 0.75), rgba(15, 35, 55, 0.75)),
        url("https://images.unsplash.com/photo-1564769739022-bf72c179ca08?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.lifestyle-text h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lifestyle-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--color-tan);
  margin-bottom: 18px;
}
.lifestyle-text p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 26px;
  opacity: 0.92;
}

.lifestyle-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 24px;
}
.lifestyle-small {
  display: flex;
  align-items: center;
  gap: 26px;
}
.lifestyle-small img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.lifestyle-small-text h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--color-dark);
}
.lifestyle-small-text span {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

/* ============================================
   STEWARDSHIP (PRIVATE LEDGER)
   ============================================ */
.stewardship { background: var(--color-bg-light); }
.stewardship-close {
  font-weight: 600;
  color: #fff;
  opacity: 1 !important;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 18px;
}

/* ============================================
   ASSET MULTIPLIER
   ============================================ */
.asset-multiplier { background: #fff; padding-bottom: 90px; }
.asset-multiplier-lead {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-muted);
}
.audience-grid .pillar-card {
  text-align: center;
  border-top: 3px solid var(--color-terracotta);
}
.audience-grid .pillar-card p {
  font-weight: 500;
  color: var(--color-dark);
}

/* ============================================
   CTA BANNER (Section 6)
   ============================================ */
.cta-banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-card {
  position: relative;
  z-index: 2;
  background: #fff;
  text-align: center;
  max-width: 620px;
  width: 90%;
  padding: 50px 40px;
  transform: translateY(40%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.cta-logo {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.cta-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-tan-dark);
  font-weight: 600;
}
.cta-brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
}
.cta-card h2 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--color-dark);
}
.cta-card p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 26px;
  line-height: 1.8;
}

/* ============================================
   REGISTRATION OF INTEREST
   ============================================ */
.registration {
  background: var(--color-bg-light);
  padding: 100px 0 100px;
}
.registration-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 15px 45px rgba(43,43,40,.08);
  padding: 56px 50px;
}
.registration-head { text-align: center; margin-bottom: 40px; }
.registration-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-tan-dark);
  margin-bottom: 12px;
}
.registration-head h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--color-dark);
  margin-bottom: 14px;
}
.registration-head p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-muted);
}
.registration-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.registration-form .form-group { margin-bottom: 20px; text-align: left; }
.registration-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.registration-form input[type="text"],
.registration-form input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d8d5d0;
  border-radius: 4px;
  font-size: 14px;
}
.registration-form input:focus { outline: none; border-color: var(--color-tan); }
.registration-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.registration-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: normal;
}
.registration-radio input { accent-color: var(--color-tan); width: 16px; height: 16px; }
@media (max-width: 640px) {
  .registration-card { padding: 40px 26px; }
  .registration-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp") center center/cover no-repeat;
  color: rgba(0, 0, 0, 0.75);
  padding: 130px 0 0;
  font-size: 13px;
  overflow: hidden;
}

/* Dark overlay on image */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.82); Increase/decrease opacity as needed */
  z-index: 1;
}

/* Keep footer content above overlay */
.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b4d2d;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #6b4d2d;
}

.footer-disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-disclaimer p {
  font-size: 11.5px;
  line-height: 1.9;
  color: rgba(0,0,0,0.7);
  max-width: 1100px;
}

.footer-rera {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: rgba(0,0,0,0.85) !important;
}

.footer-rera strong {
  color: #111;
}

.footer-rera a {
  color: #6b4d2d;
  text-decoration: underline;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.7);
}

/* ============================================
   WHATSAPP FLOATING WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(169,150,126,0.5);
  z-index: 1500;
  transition: var(--transition);
}
.whatsapp-widget:hover {
  background: var(--color-tan-dark);
  transform: translateY(-3px);
}
.whatsapp-widget svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  position: relative;
  z-index: 2;
}
.whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-whatsapp);
  opacity: 0.55;
  animation: waPulse 2.2s infinite ease-out;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-dark);
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   MODAL POPUP
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  border-radius: 4px;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-muted);
  line-height: 1;
}
.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-tan-dark);
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d5d0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
.form-group input:focus { outline: none; border-color: var(--color-tan); }
.form-group input.invalid { border-color: #d0453c; }
.error-msg {
  display: block;
  color: #d0453c;
  font-size: 12px;
  margin-top: 4px;
  min-height: 14px;
}
.form-success {
  display: none;
  color: #2f8a4a;
  text-align: center;
  font-size: 14px;
  margin-top: 14px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .overview-grid { grid-template-columns: 1fr; }
  .overview-image img { min-height: 280px; }
  .lifestyle-split { grid-template-columns: 1fr; }
  .lifestyle-split--reverse .lifestyle-img,
  .lifestyle-split--reverse .lifestyle-text { order: initial; }
  .lifestyle-img img { min-height: 280px; }
  .lifestyle-small-grid { grid-template-columns: 1fr; gap: 30px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-image-wrap { height: 380px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .main-nav {
    /* position: fixed; */
    /* top: var(--header-height); */
    right: -100%;
    width: 100%;
    max-width: 413px;
    /* height: calc(100vh - var(--header-height)); */
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 30px;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .main-nav.active { right: 0; }
  .main-nav ul {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .nav-enquire-btn { width: 100%; text-align: center; }
  .hamburger { display: flex; }

  .logo-main { font-size: 15px; }
  .logo-sub { font-size: 8px; }
  /* .logo img { width: 38px; height: 38px; } */

  /* Hero: much shorter image area on mobile, form sits below in normal flow */
  .hero-visual { min-height: 56vh; padding-top: calc(var(--header-height) + 10px); }
  /* .hero-title { font-size: 38px; text-align: center; margin: 0 auto; } */
  .hero-content { text-align: center; }
  .hero-form-bar { position: relative; flex-direction: column; }
  .hero-form-label { justify-content: center; padding: 16px; font-size: 15px; }
  .hero-form { flex-direction: column; padding: 20px; }
  .hero-form .form-group { width: 100%; }
  .hero-form .btn-submit { width: 100%; }

  .section-head { padding-top: 40px; margin-bottom: 34px; }
  .section-head h2 { font-size: 22px; }

  .overview-text { padding: 34px 24px; }
  .overview-text h3 { font-size: 20px; }

  /* Gallery card: same structure as desktop, just shorter image + tighter padding */
  .gallery { padding-bottom: 50px; }
  .gallery-card { border-radius: 0; box-shadow: none; margin: 0 -24px; }
  .gallery-image-wrap { height: 240px; }
  .gallery-nav-row { padding: 16px; gap: 18px; }
  .gallery-info { padding: 24px 24px 8px; }
  .gallery-info h3 { font-size: 19px; }

  /* Amenities: grid becomes a swipeable single-card carousel */
  .amenities-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin: 0 -24px;
    padding: 0 24px;
    scrollbar-width: none;
  }
  .amenities-grid::-webkit-scrollbar { display: none; }
  .amenity-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    aspect-ratio: 4/3;
  }
  .amenities-controls { display: flex; }

  .lifestyle-text { padding: 40px 24px; }
  .lifestyle-small { flex-direction: column; text-align: center; }
  .lifestyle-small img { width: 100%; height: 200px; }

  .cta-card { transform: translateY(20%); padding: 34px 24px; }
  .cta-card h2 { font-size: 20px; }
  .site-footer { padding-top: 100px; }

  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .whatsapp-widget { bottom: 18px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-widget svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* @media (max-width: 420px) {
  .hero-title { font-size: 24px; }
  .cta-brand { font-size: 20px; }
} */



.price-spec{
    /* background:#f6f5f3; */
    padding:0 0 120px;
}

.ps-card{
    max-width:1080px;
    margin:0 auto;
    display:grid;
    grid-template-columns:280px 1fr;
    background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/background.webp") center center / cover no-repeat;
    /* border-radius:14px; */
    box-shadow:0 15px 45px rgba(43,43,40,.08);
    overflow:hidden;
}

/* ---------- PRICE SIDE ---------- */
.ps-price{
    background: url("https://malibubaygoa.s3.ap-south-1.amazonaws.com/image/home/tile2.webp") center center / cover no-repeat;
    color:#f3f2f0;
    padding:44px 36px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-right:1px solid rgba(255,255,255,.06);
}

.ps-label{
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#f3f2f0;
    margin-bottom:10px;
}

.ps-value{
    font-size:40px;
    font-weight:600;
    line-height:1.1;
    color:#fffdf8;
}

.ps-currency{
    font-size:60px;
    font-weight:500;
    margin-right:2px;
    color:#f3f2f0;
}

.ps-unit{
    font-size:20px;
    font-weight:500;
    color:#f3f2f0;
    margin-left:2px;
}

.ps-onwards{
    display:block;
    font-size:13px;
    color:#f3f2f0;
    margin:8px 0 26px;
}

.ps-cta{
    display:inline-block;
    align-self:flex-start;
    font-size:10px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    color:#2b2b28;
    background:#f3f2f0;
    padding:13px 24px;
    border-radius:3px;
    text-decoration:none;
    transition:.25s;
}

.ps-cta:hover{
    background:#fffdf8;
}

/* ---------- SPECS GRID ---------- */
.ps-specs{
    padding:36px 40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px 28px;
}

.ps-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.ps-item svg{
    width:24px;
    height:24px;
    flex-shrink:0;
    color:#0e5b78;
    margin-top:2px;
}

.ps-item div{
    display:flex;
    flex-direction:column;
}

.ps-key{
    font-size:11px;
    letter-spacing:.6px;
    text-transform:uppercase;
    color:#8f8a7c;
    margin-bottom:4px;
}

.ps-val{
    font-size:15px;
    font-weight:500;
    color:#2b2b28;
    line-height:1.4;
}

/* ---------- FOOTNOTE ---------- */
.ps-footnote{
    max-width:1080px;
    margin:20px auto 0;
    text-align:center;
    font-size:12px;
    color:#8f8a7c;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px){

    .ps-card{
        grid-template-columns:1fr;
    }

    .ps-price{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.06);
        align-items:flex-start;
    }

    .ps-specs{
        grid-template-columns:repeat(2,1fr);
        padding:32px 28px;
    }
}

@media (max-width:560px){

    .ps-specs{
        grid-template-columns:1fr;
        gap:22px;
    }

    .ps-price,
    .ps-specs{
        padding:32px 24px;
    }

    .ps-value{
        font-size:32px;
    }
}