/* DVNM See Breeze production stylesheet. Generated from source files in cascade order. */

/* Source: variables.css */
/* ====================================
   PROPPILLAR DESIGN TOKENS
==================================== */

:root {

    /* ==========================
       BRAND COLORS
    ========================== */

    --color-primary: #006B77;
    --color-primary-hover: #005762;
    --color-primary-light: #E6F5F7;

    /* ==========================
       BACKGROUND COLORS
    ========================== */

    --color-white: #FFFFFF;
    --color-background: #F8FAFA;

    /* ==========================
       TEXT COLORS
    ========================== */

--color-heading: #1F2937;
--color-body: #4B5563;
--color-muted: #6B7280;
--color-text: var(--color-body);
--color-text-light: var(--color-muted);

    /* ==========================
       BORDER COLOR
    ========================== */

    --color-border: #E8E8E8;

    /* ==========================
   FONT FAMILY
========================== */

--font-heading: "Manrope", sans-serif;
--font-body: "Inter", sans-serif;


/* ==========================
   FONT SIZES
========================== */

--font-size-hero: 56px;

--font-size-h1: 42px;

--font-size-h2: 32px;

--font-size-h3: 24px;

--font-size-h4: 20px;

--font-size-body: 16px;

--font-size-small: 14px;

--font-size-caption: 12px;


/* ==========================
   FONT WEIGHTS
========================== */

--font-weight-regular: 400;

--font-weight-medium: 500;

--font-weight-semibold: 600;

--font-weight-bold: 700;

--font-weight-extrabold: 800;


/* ==========================
   LINE HEIGHT
========================== */

--line-height-body: 1.6;

--line-height-heading: 1.2;

/* ==========================
   SPACING
========================== */

--space-4: 4px;

--space-8: 8px;

--space-12: 12px;

--space-16: 16px;

--space-20: 20px;

--space-24: 24px;

--space-32: 32px;

--space-40: 40px;

--space-48: 48px;

--space-64: 64px;

--space-80: 80px;

--space-100: 100px;

--space-120: 120px;

/* ==========================
   BORDER RADIUS
========================== */

--radius-small: 8px;

--radius-medium: 12px;

--radius-large: 16px;

--radius-xl: 20px;

--radius-round: 999px;

/* ==========================
   SHADOWS
========================== */

--shadow-small: 0 2px 8px rgba(0, 0, 0, 0.05);

--shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);

--shadow-large: 0 16px 40px rgba(0, 0, 0, 0.10);

/* ==========================
   LAYOUT
========================== */

--container-width: 1280px;

--header-height: 80px;

--section-padding: 100px;

--transition-fast: 0.2s ease;

--transition-normal: 0.3s ease;

--transition-slow: 0.5s ease;

--logo-height: 42px;


/* ==========================
   Z-INDEX
========================== */

--z-header: 1000;
--z-dropdown: 1010;
--z-overlay: 9980;
--z-modal: 9999;

}

/* Source: reset.css */
/* ========================================
   CSS RESET
======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-16));
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: calc(72px + var(--space-16));
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: calc(68px + var(--space-16));
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: calc(64px + var(--space-16));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Source: typography.css */
/* ========================================
   GLOBAL TYPOGRAPHY
======================================== */

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-text);
    background-color: var(--color-background);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

p {
    margin-bottom: var(--space-16);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Source: layout.css */
/* ========================================
   WEBSITE CONTAINER
======================================== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--space-40);
    padding-right: var(--space-40);
}


/* ========================================
   GLOBAL SECTIONS
======================================== */

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: var(--space-16);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-light);
}

/* Source: buttons.css */
/* ==================================================
   GLOBAL BUTTON STYLE
================================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-height:48px;
    padding:0 24px;

    border:1px solid transparent;
    border-radius:14px;

    font-size:15px;
    font-weight:700;
    line-height:1;

    text-decoration:none;
    white-space:nowrap;

    cursor:pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-actions{
    display:flex;
    gap:16px;
    margin-top:0;
}

.hero-actions .btn{
    min-height:56px;
    padding:0 32px;

    font-size:16px;
}


/* ==================================================
   PRIMARY BUTTON
================================================== */

.btn-primary{
    background:#006B77;
    color:#ffffff;

    border-color:#006B77;

    box-shadow:0 10px 25px rgba(0,107,119,.25);
}

.btn-primary:hover{
    background:#005B65;
    color:#ffffff;

    border-color:#005B65;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,107,119,.35);
}


/* ==================================================
   OUTLINE BUTTON
================================================== */

.btn-outline{
    background:#ffffff;
    color:#006B77;

    border:2px solid #006B77;
}

.btn-outline:hover{
    background:#006B77;
    color:#ffffff;

    transform:translateY(-3px);
}


/* ==================================================
   PROJECT OVERVIEW BUTTON
================================================== */

.overview-btn{
    min-width:220px;
    min-height:56px;

    margin-top:10px;
}

.overview-btn:hover{
    transform:translateY(-2px);
}

/* Source: header.css */
 /* ====================================
   HEADER
==================================== */

  .site-header {

    position: sticky;
    top: 0;

    width: 100%;

    z-index: var(--z-header);

    background-color: var(--color-white);

    border-bottom: 1px solid var(--color-border);

}

  .navbar {
    min-height: var(--header-height);

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: var(--space-40);
  }

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

  .project-logo {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}
.logo-image {

    display: block;

     height: var(--logo-height);

    width: auto;

    object-fit: contain;

    transition: transform var(--transition-normal);

}

.project-logo:hover .logo-image {

    transform: scale(1.03);

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

  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .nav-link {
    position: relative;

    display: flex;
    align-items: center;
    min-height: var(--header-height);

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 1;

    color: var(--color-body);

    transition: color var(--transition-normal);
  }

 /* Desktop underline effect only */
@media (min-width: 992px) {

    .nav-link::after {
        content: "";

        position: absolute;
        left: 0;
        bottom: 19px;

        width: 0;
        height: 2px;

        background-color: var(--color-primary);

        transition: width var(--transition-normal);
    }

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

}

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

  .header-cta {
    height: 44px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--color-primary);
    color: var(--color-white);

    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    line-height: 1;

    border: none;
    border-radius: 14px;

    transition:
      background var(--transition-normal),
      box-shadow var(--transition-normal);
  }

  .header-cta-arrow {
    display: inline-block;

    font-size: 18px;
    font-weight: var(--font-weight-medium);

    transition: transform var(--transition-normal);
  }

  .header-cta:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-small);
    transform: none;
  }

  .header-cta:hover .header-cta-arrow {
    transform: translateX(5px);
  }

  /* Hide mobile-only CTA on desktop */

.mobile-menu-cta {
    display: none;
}

  /* ==================================================
   MENU TOGGLE
================================================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    justify-content:center;

    gap:5px;

    width:44px;
    height:44px;

    padding:0;

    background:none;

    border:0;

    cursor:pointer;
}

.menu-toggle span{
    display:block;

    width:24px;
    height:2px;

    background:#0F172A;
    border-radius:10px;

    transition:
        transform .3s ease,
        opacity .3s ease;
}

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

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

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

body.menu-open{
    overflow:hidden;
}

/* Source: hero.css */
/* ========================================
   HERO SECTION
======================================== */

.hero {
    background-color: var(--color-background);
    padding-top: 0;
    padding-bottom: 50px;
}

.hero-content {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
    gap:40px;
    min-height:590px;
}

/* ========================================
   HERO LEFT CONTENT
======================================== */

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-48) var(--space-48) var(--space-48) 0;
}


/* ========================================
   HERO TYPOGRAPHY
======================================== */

/* Premium Badge */

.hero-badge{

    display:inline-flex;
    align-items:center;
    width: fit-content;

    background:#EAF8F9;

    color:#006B77;

    padding:8px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    margin-bottom:10px;

}


/* Project Name */

.project-name{

    font-family:var(--font-heading);

    font-size:22px;

    font-weight:800;

    line-height:1.15;

    color:#111827;

    margin:0;

}


/* Location */

.project-location{

    margin-top:5px;

    font-size:14px;

    color:#6B7280;

}


/* Main Heading */

.hero-title{

    font-family:var(--font-heading);

    font-size:32px;

    font-weight:900;

    line-height:1.08;

    color:#111827;

    margin:0px 0 0px;

}


.hero-title span{

    display:block;

    color:#006B77;

}
.hero-tagline{

    margin:0 0 16px;

    font-size:18px;

    font-weight:600;

    color:#006B77;

}

/* Description */

.hero-description{

    max-width:480px;

    font-size:16px;

    line-height:1.8;

    color:#4B5563;

    margin:0;

}

/* ========================================
   HERO RIGHT IMAGE
======================================== */

.hero-right{
    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.hero-image{
    display:block;

    width:100%;
    max-width:670px;
    height:auto;

    object-fit:cover;
    object-position:center;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(15,23,42,.10);
}

/* ========================================
   HERO FEATURES
======================================== */

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding:12px 12px;
    background:#FFFFFF;
    border:1px solid #EEF2F5;
    border-radius:10px;
    transition:all .30s ease;
}
.feature-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 24px rgba(0,0,0,.08);

}
.feature-icon{

    width:25px;

    height:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EAF8F9;

    color:#006B77;

    border-radius:8px;

    font-size:14px;

    flex-shrink:0;

}
.feature-icon img{

    width:20px;

    height:20px;

    object-fit:contain;

    display:block;
}
.feature-card:last-child .feature-icon img{
    width:24px;
    height:24px;
}

.feature-card p{

    margin:0;

    font-size:12px;

    font-weight:600;

    color:#1F2937;

    line-height:1.3;

}

/* ========================================
   HERO STATS
======================================== */

.hero-stats {

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    margin-top:8px;

}

.stat-card {

    background: #ffffff;

    padding: 24px;

    border-radius: 18px;

    border: 1px solid #E7EDF2;

    box-shadow: 0 8px 24px rgba(0,0,0,.05);

    transition: .3s;

}

.stat-card:hover{

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,.10);

}

.stat-label{

    display:block;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#6B7280;

    margin-bottom:10px;

}

.stat-value{

    margin:0;

    font-size:20px;

    font-weight:700;

    color:#111827;

}

/* Source: sections.css */
/* ===================================
   PROJECT OVERVIEW
=================================== */

.project-overview{

    padding:50px 0 65px;

    background:#eff7f7;

}

.overview-heading{

    text-align:center;

    max-width:900px;

    margin:0 auto 32px;

}

.section-label{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#EAF8F8;

    color:#006B77;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title{

    font-family:var(--font-heading);

    font-size:24px;

    font-weight:800;

    line-height:1.15;

    color:#111827;

    margin-bottom:6px;

    max-width:760px;

    margin-left:auto;

    margin-right:auto;

}

.section-subtitle{

    max-width:720px;

    margin:0 auto;

    font-size:14px;

    line-height:1.7;

    color:#6B7280;

}

.overview-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:start;
    gap:50px;
}

.overview-visual{
    margin:40px 0 0;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 24px 60px rgba(17, 24, 39, 0.12);
}

.overview-visual img{
    display:block;
    width:100%;
    height:390px;
    object-fit:cover;
}

.overview-content{
    max-width:560px;
}

.overview-eyebrow{
    margin:0 0 12px;
    color:#006B77;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.overview-title{
    margin:0 0 22px;

    font-family:var(--font-heading);
    font-size:20px;
    font-weight:800;
    line-height:1.25;

    color:#111827;
}

.overview-description{
    margin:0 0 18px;

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

    color:#5F6877;
}

.overview-highlights{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:10px;

    list-style:none;
    padding:0;
    margin:10px 0 22px;
}

.overview-highlight{

    padding:10px 14px;

    border:1px solid #E1E7E9;
    border-radius:14px;

    background:#ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.overview-highlight strong{
    display:block;

    margin-bottom:5px;

    color:#111827;

    font-family:var(--font-heading);
    font-size:14px;
    font-weight:800;
}

.overview-highlight span{
    display:block;

    color:#6B7280;

    font-size:12px;
    line-height:1;
}

.overview-highlight:hover{
    transform:translateY(-3px);

    border-color:rgba(0, 107, 119, 0.25);

    box-shadow:0 12px 28px rgba(17, 24, 39, 0.08);
}

/* ===================================
   AMENITIES
=================================== */

.amenities{
    padding:90px 0;

    background:#ffffff;
}

.amenities-heading{

    max-width:860px;

    margin:0 auto 60px;

    text-align:center;

}

.amenities-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:60px 50px;

    list-style:none;

    margin:0;

    padding:0;

}

.amenity-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.amenity-icon{

    width:50px;
    height:50px;

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

    margin-bottom:14px;

    border-radius:50%;

    background:linear-gradient(
        180deg,
        #F5FCFC 0%,
        #d5e0e0 100%
    );

    border:1px solid #D6EEEE;

    box-shadow:0 8px 18px rgba(0,107,119,.08);

    transition:all .35s ease;
}

.amenity-icon img{

    width:36px;
    height:36px;

    display:block;
}

.amenity-item span{

    font-size:14px;

    font-weight:600;

    line-height:1.5;

    color:#111827;

}
.amenity-item:hover .amenity-icon{

    transform:translateY(-8px);

    background:#006B77;

    box-shadow:0 18px 35px rgba(0,107,119,.20);
}

.amenity-item:hover .amenity-icon img{

    filter:brightness(0) invert(1);

    transform:scale(1.08);
}

.amenity-item img{

    transition:

        transform .35s ease,

        background .35s ease;

}

/* ==================================
   Amenities CTA
================================== */

.amenities-cta{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    margin-top:64px;
}

.amenities-cta .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:260px;
    min-height:58px;

    padding:14px 28px;
    border-radius: 15px;
    font-size:16px;
    font-weight:600;
    line-height:1;

    text-decoration:none;
}

.amenities-cta .btn svg{
    flex-shrink:0;
}

/*========================================
  FLOOR PLANS
========================================*/

.floor-plans{
    padding:100px 0;
    background:#F9FBFC;
}

.floor-plans-heading{
    max-width:860px;
    margin:0 auto 60px;
    text-align:center;
}

.floor-plans-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 360px));

    justify-content:center;

    gap:28px;
}

.floor-plan-card{
    background:#ffffff;
    border:1px solid #E7EEF0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(15,23,42,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.floor-plan-card:hover{
    transform:translateY(-8px);
    border-color:#006B77;
    box-shadow:0 22px 50px rgba(0,107,119,.15);
}

/*========================================
  IMAGE
========================================*/

.floor-plan-preview{

    position:relative;

    height:220px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F5F7F8;

    overflow:hidden;
}

.floor-plan-preview img{
    display:block;

    width:80%;          /* Reduce image width */
    height:auto;

    margin:30px auto;   /* Center the image */

    object-fit:contain;

    filter:blur(6px);
    border-bottom:1px solid #EEF2F4;

    transition:
        transform .4s ease,
        filter .4s ease;
}

.floor-plan-card:hover .floor-plan-preview img{
    transform:scale(1.12);
    filter:blur(8px);
}

/*========================================
  PREVIEW BADGE
========================================*/

.floor-plan-lock{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    display:flex;

    align-items:center;

    gap:6px;

    padding:10px 18px;

    background:#ffffff;

    border-radius:999px;

    box-shadow:0 12px 24px rgba(15,23,42,.10);

    z-index:2;
    font-size:13px;

    font-weight:600;

    color:#006B77;
}


.floor-plan-lock svg{
    flex-shrink:0;
}

/*========================================
  CONTENT
========================================*/

.floor-plan-content{
    padding:28px;
}

.floor-plan-title{

    margin:0 0 22px;

    font-size:20px;

    font-weight:700;

    color:#1F2937;

    text-align:center;
}

/*========================================
  BUTTON
========================================*/

.floor-plan-btn{

    width:90%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 22px;

    border-radius:14px;
}

.floor-plan-btn svg{
    transition:transform .3s ease;
}

.floor-plan-btn:hover svg{
    transform:translateY(2px);
}

.floor-plan-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* ==================================================
   PRICING SECTION
================================================== */

.pricing-section {
    padding: 90px 0;
    background: #f3f8f8;
}


/* Main two-column layout */

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.45fr);
    gap: 70px;
    align-items: center;
}


/* ==================================================
   LEFT COLUMN
================================================== */

.pricing-intro {
    max-width: 470px;
}

.pricing-title {
    margin: 0 0 20px;
    text-align: left;
    max-width: 470px;
}

.pricing-description {
    margin: 0;
    max-width: 450px;

    font-size: 16px;
    line-height: 1.8;

    color: #5f6d72;
}


/* Benefits */

.pricing-benefits {
    display: grid;
    gap: 20px;

    margin: 34px 0 0;
    padding: 0;

    list-style: none;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pricing-check {
    flex: 0 0 30px;

    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(0, 107, 119, 0.1);
    color: #006b77;

    font-size: 14px;
    font-weight: 700;
}

.pricing-benefits div {
    display: grid;
    gap: 3px;
}

.pricing-benefits strong {
    font-size: 15px;
    line-height: 1.4;
    color: #1f292d;
}

.pricing-benefits div span {
    font-size: 13.5px;
    line-height: 1.6;
    color: #788489;
}


/* ==================================================
   RIGHT PRICING PANEL
================================================== */

.pricing-panel {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(0, 107, 119, 0.12);
    border-radius: 22px;
    max-width:720px;
    margin-left:auto;
    margin-top: 100px;
    box-shadow:
        0 20px 50px rgba(15, 46, 51, 0.08);
}


/* Horizontal configuration row */

.pricing-row {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(190px, 1fr)
        minmax(175px, 0.85fr)
        minmax(175px, 0.72fr);

    gap: 28px;
    align-items: center;

    min-height: 120px;
    padding: 20px 28px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.pricing-row + .pricing-row {
    border-top: 1px solid #e9efef;
}

.pricing-row:hover {
    background: #f8fbfb;
}


/* Configuration */

.pricing-configuration {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pricing-number {
    color: rgba(0, 107, 119, 0.25);

    font-size: 27px;
    font-weight: 700;
    line-height: 1;
}

.pricing-configuration h3 {
    margin: 0 0 5px;

    font-size: 18px;
    line-height: 1.2;
    margin-bottom:2px;
    color: #20282b;
}

.pricing-configuration p {
    margin: 0;

    font-size:12px;

    line-height:1.4;

    color: #7b878b;
}
/* Pricing information */

.pricing-value {
    position: relative;

    display: grid;
    gap: 4px;

    padding-left: 25px;
}

.pricing-value::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    border-radius: 2px;
    background: rgba(0, 107, 119, 0.16);
}

.pricing-value > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: #8b969a;
}

.pricing-value strong {
    font-size:18px;

    font-weight:700;

    color: #006b77;
}

.pricing-value small {
    font-size: 12px;
    font-weight: 500;

    color: #6c797d;
}


/* Button */

.pricing-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:170px;
    min-width:170px;
    height:52px;

    padding:0 22px;

    border-radius:14px;

    font-size:14px;
    font-weight:700;

    text-align:center;
    white-space:nowrap;

    box-shadow:0 6px 14px rgba(0,107,119,.12);
}



/* ==================================================
   ASSISTANCE STRIP
================================================== */

.pricing-assistance {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;

    max-width: 920px;

    margin: 38px auto 0;
    padding: 19px 24px;

    background: #ffffff;

    border: 1px solid rgba(0, 107, 119, 0.12);
    border-radius: 14px;
}

.pricing-assistance-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(0, 107, 119, 0.1);
    color: #006b77;

    font-size: 20px;
    font-weight: 700;
}

.pricing-assistance > div:nth-child(2) {
    display: grid;
    gap: 3px;
}

.pricing-assistance strong {
    font-size: 14.5px;
    color: #263235;
}

.pricing-assistance span {
    font-size: 13px;
    color: #788489;
}

.pricing-assistance-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #006b77;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: gap 0.25s ease;
}

.pricing-assistance-link:hover {
    gap: 12px;
}

/* ==================================================
   WALKTHROUGH SECTION
================================================== */

.walkthrough-section{
    padding:90px 0;
    background:#ffffff;
}


/* Section heading */

.walkthrough-heading{
    max-width:850px;
    margin:0 auto 36px;
    text-align:center;
}

.walkthrough-heading .section-subtitle{
    max-width:760px;
    margin:16px auto 0;
}


/* ==================================================
   WALKTHROUGH GRID
================================================== */

.walkthrough-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;

    max-width:1120px;
    margin:0 auto;
}


/* ==================================================
   WALKTHROUGH CARD
================================================== */

.walkthrough-card{
    overflow:hidden;

    background:#ffffff;

    border:1px solid rgba(0,107,119,.10);
    border-radius:22px;

    box-shadow:
        0 18px 45px rgba(24,52,57,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.walkthrough-card:hover{
    transform:translateY(-6px);

    border-color:rgba(0,107,119,.20);

    box-shadow:
        0 26px 60px rgba(24,52,57,.13);
}


/* ==================================================
   IMAGE PREVIEW
================================================== */

.walkthrough-preview{
    position:relative;

    height:270px;

    margin:0;

    overflow:hidden;

    background:#eaf1f2;
}

.walkthrough-preview img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .55s ease,
        filter .4s ease;
}

.walkthrough-card:hover .walkthrough-preview img{
    transform:scale(1.045);
}


/* Dark overlay */

.walkthrough-preview::after{
    content:"";

    position:absolute;
    inset:0;

    background:rgba(12,29,32,.22);

    transition:background-color .35s ease;
}

.walkthrough-card:hover .walkthrough-preview::after{
    background:rgba(12,29,32,.12);
}


/* ==================================================
   PLAY BUTTON
================================================== */

.play-button{
    position:absolute;

    top:50%;
    left:50%;

    z-index:2;

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

    width:60px;
    height:60px;

    padding:0;

    border:1px solid rgba(255,255,255,.65);
    border-radius:50%;

    background:rgba(255,255,255,.94);
    color:#006b77;

    font-size:22px;
    line-height:1;

    cursor:pointer;

    box-shadow:
        0 14px 35px rgba(0,0,0,.20);

    transform:translate(-50%,-50%);

    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

/* Small visual correction for play triangle */
.play-button{
    text-indent:4px;
}

.play-button:hover,
.walkthrough-card:hover .play-button{
    background:#006b77;
    color:#ffffff;

    transform:
        translate(-50%,-50%)
        scale(1.08);

    box-shadow:
        0 18px 40px rgba(0,107,119,.30);
}

.play-button:focus-visible{
    outline:3px solid rgba(0,107,119,.25);
    outline-offset:4px;
}


/* ==================================================
   CARD CONTENT
================================================== */

.walkthrough-content{
    padding:18px 22px 22px;
}

.walkthrough-label{
    margin:0 0 8px;

    color:#006b77;

    font-size:11px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:.11em;
    text-transform:uppercase;
}

.walkthrough-title{
    margin:0 0 18px;

    color:#20282b;

    font-size:22px;
    font-weight:700;
    line-height:1.25;
}


/* ==================================================
   WALKTHROUGH BUTTON
================================================== */

.walkthrough-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    min-height:60px;
    font-size:18px;
    border-radius: 15px;

    text-align:center;
}

/* ==================================================
   CONTACT SECTION
================================================== */

.contact-section{
    padding:52px 0 58px;
    background:#F8FBFB;
}


/* ========================================
   Heading
======================================== */

.contact-heading{
    max-width:760px;
    margin:0 auto 26px;
    text-align:center;
}

.contact-heading .section-title{
    font-size:30px;
}

.contact-heading .section-subtitle{
    max-width:660px;
    margin:10px auto 0;

    font-size:14px;
    line-height:1.55;
}


/* ========================================
   Layout
======================================== */

.contact-layout{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:22px;
    align-items:stretch;

    max-width:1120px;
    margin:0 auto;
}


/* ========================================
   Cards
======================================== */

.contact-form-panel,
.rera-panel{
    display:flex;
    flex-direction:column;

    height:100%;
    padding:22px 24px;

    background:#fff;

    border:1px solid rgba(0,107,119,.10);
    border-radius:18px;

    box-shadow:
        0 14px 35px rgba(24,52,57,.07);
}


/* ========================================
   Panel Heading
======================================== */

.contact-panel-heading,
.rera-panel-heading{
    margin-bottom:14px;
}

.contact-panel-heading h3,
.rera-panel-heading h3{
    margin:0 0 5px;

    font-size:20px;
    font-weight:700;
    line-height:1.3;

    color:#1F2937;
}

.contact-panel-heading p,
.rera-panel-heading p{
    margin:0;

    font-size:12.5px;
    line-height:1.5;

    color:#64748B;
}

.rera-eyebrow{
    margin:0 0 5px;

    color:#006B77;

    font-size:10.5px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}


/* ========================================
   Form
======================================== */

.contact-form{
    display:grid;
    gap:13px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.form-group-full{
    grid-column:1/-1;
}

.form-group label{
    font-size:12.5px;
    font-weight:600;
    color:#374151;
}

.form-group label span{
    font-weight:400;
    color:#6B7280;
}


/* ========================================
   Inputs
======================================== */

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    min-height:43px;

    padding:9px 13px;

    border:1px solid #D8E2E5;
    border-radius:10px;

    background:#fff;

    font-size:13.5px;
    color:#1F2937;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-form textarea{
    min-height:72px;
    height:72px;
    resize:none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#8A96A3;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;

    border-color:#006B77;

    box-shadow:
        0 0 0 3px rgba(0,107,119,.08);
}


/* ========================================
   Submit Button
======================================== */

.contact-submit-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:46px;
    min-height:46px;

    margin-top:1px;

    border-radius:14px;

    font-size:14px;
    text-align:center;
}


/* ========================================
   Consent
======================================== */

.form-consent{
    margin:0;

    text-align:center;

    font-size:10px;
    line-height:1.45;

    color:#6B7280;
}


/* ========================================
   RERA Panel
======================================== */

.rera-panel{
    text-align:center;
}

.rera-panel-heading{
    text-align:left;
}


/* ========================================
   QR
======================================== */

.rera-qr{
    display:flex;
    justify-content:center;

    margin:30px 0 14px;
}

.rera-qr img{
    display:block;

    width:145px;
    height:145px;

    object-fit:contain;

    border:1px solid #E5ECEE;
    border-radius:12px;

    background:#fff;
}


/* ========================================
   Registration
======================================== */

.rera-registration{
    margin-bottom:12px;
    text-align:center;
}

.rera-registration span{
    display:block;

    margin-bottom:4px;

    font-size:10.5px;
    line-height:1.4;

    color:#64748B;

    text-transform:uppercase;
    letter-spacing:.08em;
}

.rera-registration strong{
    display:block;

    font-size:17px;
    font-weight:700;
    line-height:1.3;

    color:#006B77;
}


/* ========================================
   Verify Link
======================================== */

.rera-verify-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    margin:0 auto 14px;

    color:#006B77;

    font-size:13px;
    font-weight:600;
    text-decoration:none;

    transition:
        gap .25s ease,
        color .25s ease;
}

.rera-verify-link:hover{
    gap:10px;
    color:#00545D;
}


/* ========================================
   Note
======================================== */

.rera-note{
    display:flex;
    align-items:flex-start;
    gap:9px;

    margin-top:auto;
    padding-top:13px;

    border-top:1px solid #E8EEF0;

    text-align:left;
}

.rera-note-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

    width:21px;
    height:21px;

    border-radius:50%;

    background:#E6F5F6;
    color:#006B77;

    font-size:10px;
    font-weight:700;
}

.rera-note p{
    margin:0;

    font-size:11px;
    line-height:1.45;

    color:#64748B;
}

/* ==================================================
   FAQ SECTION
================================================== */

.faq-section{
    padding:60px 0;
    background:#ffffff;
}


/* ========================================
   Layout
======================================== */

.faq-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:32px;
    align-items:start;

    max-width:1120px;
    margin:0 auto;
}


/* ========================================
   Left Content
======================================== */

.faq-intro{
    position:sticky;
    top:110px;
}

.faq-title{
    margin-top:10px;
    margin-bottom:16px;
    font-size:34px;
    line-height:1.15;
}

.faq-description{
    margin-bottom:26px;

    font-size:15px;
    line-height:1.7;

    color:#64748B;
}


/* ========================================
   Support Box
======================================== */

.faq-support{
    padding:22px;

    border:1px solid rgba(0,107,119,.10);
    border-radius:18px;

    background:#F8FBFB;
}

.faq-support-label{
    display:block;

    margin-bottom:8px;

    color:#006B77;

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

.faq-support p{
    margin:0 0 18px;

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

    color:#64748B;
}

.faq-support-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#006B77;

    font-weight:600;
    text-decoration:none;

    transition:.3s;
}

.faq-support-link:hover{
    gap:12px;
}


/* ========================================
   Accordion
======================================== */

.faq-accordion{

    border:1px solid rgba(0,107,119,.10);

    border-radius:20px;

    overflow:hidden;

    background:#fff;

    box-shadow:
        0 16px 40px rgba(24,52,57,.07);
}


/* ========================================
   FAQ Item
======================================== */

.faq-item{
    border-bottom:1px solid #EDF2F3;
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-item summary{

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

    padding:20px 26px;

    cursor:pointer;

    list-style:none;

    font-size:16px;
    font-weight:600;

    color:#1F2937;

    transition:.3s;
}

.faq-item summary:hover{
    color:#006B77;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}


/* ========================================
   Icon
======================================== */

.faq-icon{

    width:18px;
    height:18px;

    position:relative;

    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{

    content:"";

    position:absolute;

    background:#006B77;

    transition:.3s;
}

.faq-icon::before{

    top:8px;
    left:2px;

    width:14px;
    height:2px;
}

.faq-icon::after{

    top:2px;
    left:8px;

    width:2px;
    height:14px;
}

.faq-item[open] .faq-icon::after{
    transform:scaleY(0);
}


/* ========================================
   Answer
======================================== */

.faq-answer{
    padding:0 26px 20px;
}

.faq-answer p{

    margin:0;

    font-size:15px;
    line-height:1.8;

    color:#64748B;
}


/* ========================================
   Bottom CTA
======================================== */

.faq-cta{

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

    margin-top:40px;

    padding:34px 40px;

    border-radius:22px;

    background:#006B77;

    color:#fff;
}

.faq-cta-content{
    max-width:620px;
}

.faq-cta-content h3{

    margin:0 0 10px;

    font-size:36px;
    line-height:1.2;
}

.faq-cta-content p{

    margin:0;

    color:rgba(255,255,255,.85);

    line-height:1.7;
}

.faq-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;
    min-height:54px;
    padding:0 28px;

    background:#ffffff;
    color:#006B77;

    border:2px solid #ffffff;
    border-radius:14px;

    font-size:15px;
    font-weight:700;
    line-height:1;

    text-decoration:none;
    white-space:nowrap;

    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.faq-cta-btn:hover{
    background:#F2F8F8;
    color:#006B77;
    border-color:#F2F8F8;

    transform:translateY(-2px);
}

/* ==================================================
   DISCLAIMER SECTION
================================================== */

.disclaimer-section{
    padding:26px 0;
    background:#F4F8F8;
}

.disclaimer-box{
    max-width:1120px;
    margin:0 auto;
    padding:22px 26px;

    background:#ffffff;

    border:1px solid rgba(0,107,119,.10);
    border-radius:16px;

    box-shadow:
        0 10px 28px rgba(24,52,57,.05);
}

.disclaimer-title{
    margin:0 0 10px;

    font-size:16px;
    font-weight:700;
    line-height:1.3;

    color:#1F2937;
}

.disclaimer-text{
    margin:0 0 8px;

    font-size:11.5px;
    line-height:1.65;

    color:#68757a80;
}

.disclaimer-text:last-child{
    margin-bottom:0;
}

/* Source: footer.css */
/* ==================================================
   FOOTER
================================================== */

.site-footer{
    background:#ffffff;
    border-top:1px solid #E5ECEE;
    padding:18px 0;
}

.site-footer .container{
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-text{
    margin:0;

    color:#64748B;

    font-size:14px;
    font-weight:500;
    line-height:1.6;

    text-align:center;
}

.footer-text strong{
    color:#006B77;
    font-weight:700;
}

/* Source: modal.css */
/* ==================================================
   LEAD CAPTURE MODAL
================================================== */

.lead-modal{
    position:fixed;
    inset:0;

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

    padding:20px;

    visibility:hidden;
    opacity:0;

    z-index:9999;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.lead-modal.is-open{
    visibility:visible;
    opacity:1;
}

.lead-modal-overlay{
    position:absolute;
    inset:0;

    background:rgba(15, 31, 34, .72);
    backdrop-filter:blur(4px);
}

.lead-modal-dialog{
    position:relative;
    z-index:1;

    width:100%;
    max-width:400px;
    max-height:calc(100vh - 30px);

    overflow-y:auto;

    padding:32px;

    background:#ffffff;

    border:1px solid rgba(0, 107, 119, .12);
    border-radius:22px;

    box-shadow:
        0 24px 70px rgba(15, 31, 34, .24);

    transform:translateY(18px) scale(.98);

    transition:transform .25s ease;
}

.lead-modal.is-open .lead-modal-dialog{
    transform:translateY(0) scale(1);
}

.lead-modal-close{
    position:absolute;
    top:14px;
    right:16px;

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

    width:36px;
    height:36px;

    padding:0;

    background:#F2F7F7;
    color:#475569;

    border:0;
    border-radius:50%;

    font-size:25px;
    line-height:1;

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.lead-modal-close:hover{
    background:#E3F0F1;
    color:#006B77;
    transform:rotate(90deg);
}

.lead-modal-header{
    margin-bottom:12px;
    padding-right:28px;
}

.lead-modal-label{
    margin:0 0 7px;

    color:#006B77;

    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;

    text-transform:uppercase;
}

.lead-modal-title{
    margin:0 0 8px;

    color:#1F2937;

    font-size:20px;
    font-weight:750;
    line-height:1.2;
    margin-bottom:4px;
}

.lead-modal-description{
    margin:0;

    color:#64748B;

    font-size:12px;
    line-height:1.45;
}

.lead-form{
    display:grid;
    gap:8px;
}

.lead-form-group{
    display:grid;
    gap:2px;
}

.lead-form-group label{
    color:#334155;

    font-size:11px;
    font-weight:650;
    margin-bottom:2px;
}

.optional-text{
    margin-left:4px;

    color:#94A3B8;

    font-size:11px;
    font-weight:500;
}

.lead-form input,
.lead-form select{
    width:100%;
    min-height:40px;

    padding:8px 12px;

    background:#ffffff;
    color:#1F2937;

    border:1px solid #DCE5E7;
    border-radius:11px;

    font:inherit;
    font-size:12px;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form select:focus{
    border-color:#006B77;

    box-shadow:
        0 0 0 3px rgba(0, 107, 119, .10);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid{
    border-color:#DC2626;
}


.form-error{
    min-height:14px;

    color:#DC2626;

    font-size:11px;
    line-height:1.3;
}

.lead-submit-btn{
    min-height:42px;
    font-size:14px;
    border-radius:12px;
}

.lead-submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.submit-loader{
    display:none;

    width:18px;
    height:18px;

    border:2px solid rgba(255,255,255,.45);
    border-top-color:#ffffff;
    border-radius:50%;

    animation:leadLoader .7s linear infinite;
}

.lead-submit-btn.is-loading .submit-text{
    display:none;
}

.lead-submit-btn.is-loading .submit-loader{
    display:block;
}

.lead-form-note{
    margin:-2px 0 0;

    color:#7C8A90;

    font-size:10px;
    text-align:center;
}

.lead-success{
    padding:20px 0 6px;

    text-align:center;
}

.success-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:64px;
    height:64px;

    margin:0 auto 18px;

    background:#E6F5F3;
    color:#00796B;

    border-radius:50%;

    font-size:30px;
    font-weight:700;
}

.lead-success h3{
    margin:0 0 10px;

    color:#1F2937;

    font-size:26px;
}

.lead-success p{
    max-width:360px;

    margin:0 auto 22px;

    color:#64748B;

    font-size:14px;
    line-height:1.65;
}

.success-action-btn{
    min-width:190px;
}

body.modal-open{
    overflow:hidden;
}

@keyframes leadLoader{
    to{
        transform:rotate(360deg);
    }
}

/* Source: site-visit-modal.css */
/* ==================================================
   BOOK SITE VISIT MODAL
================================================== */

.site-visit-dialog{
    max-width:440px;
}

.site-visit-header{
    margin-bottom:10px;
}

.site-visit-submit-btn{
    width:100%;
    min-height:50px;
    border:0;
    cursor:pointer;
}

.site-visit-note{
    margin:-5px 0 0;
    color:#7C8A90;
    font-size:8px;
    text-align:center;
}

.visually-hidden{
    position:absolute;

    width:1px;
    height:1px;

    padding:0;
    margin:-1px;

    overflow:hidden;
    clip:rect(0, 0, 0, 0);

    white-space:nowrap;
    border:0;
    
}

.site-visit-title{
    font-size:20px;
    line-height:1.15;
    margin-bottom:4px;
}

.site-visit-description{
    font-size:10px;
    line-height:1.4;
    margin:0;
}

.site-visit-form{
    gap:8px;
}

.site-visit-form input,
.site-visit-form select{
    min-height:40px;
    padding:8px 12px;
    font-size:12px;
}

/* Source: layout-responsive.css */
/* ==================================================
   LAYOUT RESPONSIVE
================================================== */


/* ==================================================
   TABLET
   991px and below
================================================== */

@media (max-width: 991px) {

    .container {
        padding-left: var(--space-24);
        padding-right: var(--space-24);
    }

    .section {
        padding: var(--space-80) 0;
    }

}


/* ==================================================
   MOBILE
   767px and below
================================================== */

@media (max-width: 767px) {

    .container {
        padding-left: var(--space-20);
        padding-right: var(--space-20);
    }

    .section {
        padding: var(--space-64) 0;
    }

}


/* ==================================================
   SMALL MOBILE
   480px and below
================================================== */

@media (max-width: 480px) {

    .container {
        padding-left: var(--space-16);
        padding-right: var(--space-16);
    }

    .section {
        padding: var(--space-48) 0;
    }

}

/* Source: header-responsive.css */
/* ==================================================
   HEADER RESPONSIVE
================================================== */


/* ==================================================
   TABLET & MOBILE
   991px and below
================================================== */

@media (max-width: 991px) {

    .navbar {
        position: relative;

        min-height: 72px;

        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: var(--space-16);
    }

    /* Logo */

    .logo-image {
        height: 38px;
    }

    /* Hide desktop CTA */

    .header-cta {
        display: none;
    }

    /* Hamburger button */

    .menu-toggle {
        display: flex;
        justify-self: end;

        position: relative;
        z-index: 3;
    }

    /* Mobile navigation drawer */

    .nav-menu {
        position: fixed;

        top: 72px;
        left: 0;
        right: 0;

        width: 100%;
        height: calc(100dvh - 72px);

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        margin: 0;
        padding: var(--space-16) var(--space-24) var(--space-32);

        background-color: var(--color-white);

        overflow-y: auto;

        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);

        pointer-events: none;

        transition:
            opacity var(--transition-normal),
            transform var(--transition-normal),
            visibility var(--transition-normal);

        z-index: 2;
    }

    .nav-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);

        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        min-height: auto;

        display: flex;
        align-items: center;

        padding: var(--space-16) 0;

        font-size: var(--font-size-body);
        font-weight: var(--font-weight-semibold);
        line-height: 1.4;

        color: var(--color-heading);

        border-bottom: 1px solid var(--color-border);
    }

    .nav-link:hover {
        color: var(--color-primary);
    }

    /* Mobile CTA */

    .mobile-menu-cta {
        display: block;

        margin-top: var(--space-24);
    }

    .mobile-menu-cta .btn {
        width: 100%;
        min-height: 48px;

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

        text-align: center;
    }

}


/* ==================================================
   MOBILE
   767px and below
================================================== */

@media (max-width: 767px) {

    .navbar {
        min-height: 68px;
    }

    .logo-image {
        height: 35px;
    }

    .nav-menu {
        top: 68px;
        height: calc(100dvh - 68px);

        padding-left: var(--space-20);
        padding-right: var(--space-20);
    }

    .nav-link {
        padding-top: var(--space-16);
        padding-bottom: var(--space-16);

        font-size: 15px;
    }
}


/* ==================================================
   SMALL MOBILE
   480px and below
================================================== */

@media (max-width: 480px) {

    .navbar {
        min-height: 64px;
    }

    .logo-image {
        height: 32px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 22px;
    }

    .nav-menu {
        top: 64px;
        height: calc(100dvh - 64px);

        padding:
            var(--space-12)
            var(--space-16)
            var(--space-24);
    }

    .nav-link {
        padding-top: 14px;
        padding-bottom: 14px;

        font-size: 15px;
    }

    .mobile-menu-cta {
        margin-top: var(--space-20);
    }
}

/* Source: hero-responsive.css */
/* ==================================================
   HERO RESPONSIVE
================================================== */


/* ==================================================
   TABLET
   991px and below
================================================== */

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-40);
        min-height: auto;
    }

    .hero-left {
        order: 2;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    .hero-right {
        order: 1;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-features {
        width: 100%;
        max-width: 700px;
    }

}

/* ==================================================
   MOBILE
   767px and below
================================================== */

@media (max-width: 767px) {

    .hero {
        padding-bottom: var(--space-48);
        padding-top: var(--space-16);
    }

    .hero-title {
        font-size: 26px;
    }

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

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: var(--space-12);
    }

    .feature-card {
        min-width: 0;
        height: 100%;
        padding: 10px 14px;
        border-radius: var(--radius-small);
    }

    .feature-card p {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .hero-actions {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-12);
    
    }
.hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-left: var(--space-12);
    padding-right: var(--space-12);

    white-space: nowrap;
}

}

/* ==================================================
   SMALL MOBILE
   480px and below
================================================== */

@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

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

    .hero-description {
        font-size: 14px;
    }

}

/* Source: sections-responsive.css */
/* ==================================================
   PROJECT OVERVIEW RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .overview-visual {
        width: 100%;
        margin: 0;
    }

    .overview-content {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .overview-content > .btn {
        display: flex;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .project-overview {
        padding: 40px 0 48px;
    }

    .overview-heading {
        margin-bottom: 24px;
    }

    .overview-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .overview-visual,
    .overview-visual img {
        width: 100%;
        max-width: 100%;
    }

    .overview-content,
    .overview-title,
    .overview-description {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: break-word;
    }

    .overview-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
    }

    .overview-highlight {
        min-width: 0;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .project-overview {
        padding: 32px 0 40px;
    }

    .overview-grid {
        gap: 24px;
    }

    .overview-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overview-visual,
    .overview-content,
    .overview-highlights,
    .overview-highlight {
        min-width: 0;
        max-width: 100%;
    }
}

/* ==================================================
   AMENITIES RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .amenities-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-48) var(--space-32);
    }

    .amenity-item,
    .amenity-item span {
        min-width: 0;
        max-width: 100%;
    }

    .amenity-item span {
        overflow-wrap: break-word;
    }

    .amenity-icon {
        flex: 0 0 50px;
    }

    .amenity-icon img {
        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 767px) {
    .amenities {
        padding: var(--space-64) 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-40) var(--space-24);
    }
}

@media (max-width: 480px) {
    .amenities {
        padding: var(--space-48) 0;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-32) var(--space-12);
    }

    .amenity-item {
        width: 100%;
        height: 100%;
        min-width: 0;
    }

    .amenity-item span {
        width: 100%;
        overflow-wrap: anywhere;
    }
}

/* ==================================================
   FLOOR PLANS RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .floor-plans-grid {
        width: 100%;
        max-width: 748px;
        min-width: 0;
        margin-right: auto;
        margin-left: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floor-plan-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        height: 100%;
    }

    .floor-plan-preview {
        width: 100%;
        min-width: 0;
        flex: 0 0 220px;
    }

    .floor-plan-preview img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .floor-plan-content {
        width: 100%;
        min-width: 0;
        flex: 1;
    }

    .floor-plan-content .btn {
        max-width: 100%;
        margin-top: auto;
    }
}

@media (max-width: 767px) {
    .floor-plans {
        padding: var(--space-64) 0;
    }

    .floor-plans-heading {
        margin-bottom: var(--space-40);
    }

    .floor-plans-grid {
        max-width: none;
        grid-template-columns: minmax(0, 1fr);
    }

    .floor-plan-content .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .floor-plans {
        padding: var(--space-48) 0;
    }

    .floor-plans-heading {
        margin-bottom: var(--space-32);
    }

    .floor-plans-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-24);
    }

    .floor-plan-content {
        padding: var(--space-20);
    }

    .floor-plan-title,
    .floor-plan-lock,
    .floor-plan-content .btn {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* ==================================================
   PRICING RESPONSIVE
================================================== */

@media (max-width: 1100px) {
    .pricing-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-40);
    }

    .pricing-intro {
        width: 100%;
        max-width: 720px;
        min-width: 0;
    }

    .pricing-panel {
        width: 100%;
        max-width: 720px;
        min-width: 0;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .pricing-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-40);
    }

    .pricing-intro {
        width: 100%;
        max-width: 720px;
        min-width: 0;
    }

    .pricing-panel {
        width: 100%;
        max-width: 720px;
        min-width: 0;
        margin: 0 auto;
    }

    .pricing-row {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr)
            auto;
        gap: var(--space-16);
        padding-right: var(--space-24);
        padding-left: var(--space-24);
    }

    .pricing-configuration,
    .pricing-value,
    .pricing-row .btn,
    .pricing-assistance > div:nth-child(2) {
        min-width: 0;
    }

    .pricing-row .btn {
        max-width: 100%;
    }

    .pricing-configuration p,
    .pricing-value small,
    .pricing-assistance span {
        overflow-wrap: break-word;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: var(--space-64) 0;
    }

    .pricing-layout {
        gap: var(--space-40);
    }

    .pricing-intro,
    .pricing-title,
    .pricing-description,
    .pricing-panel {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .pricing-row {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-20);
        align-items: stretch;
        padding: var(--space-24);
    }

    .pricing-configuration,
    .pricing-value {
        width: 100%;
        max-width: 100%;
    }

    .pricing-row .btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        white-space: normal;
    }

    .pricing-assistance {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .pricing-assistance-link {
        grid-column: 1 / -1;
        justify-self: start;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: var(--space-48) 0;
    }

    .pricing-layout {
        gap: var(--space-32);
    }

    .pricing-row {
        gap: var(--space-16);
        padding: var(--space-20);
    }

    .pricing-configuration {
        gap: var(--space-12);
    }

    .pricing-value {
        padding-left: var(--space-16);
    }

    .pricing-assistance {
        gap: var(--space-12);
        padding: var(--space-16);
    }

    .pricing-configuration,
    .pricing-configuration > div,
    .pricing-value,
    .pricing-assistance > div,
    .pricing-assistance-link,
    .pricing-row .btn {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

/* ==================================================
   WALKTHROUGH RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .walkthrough-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-20);
    }

    .walkthrough-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        height: 100%;
    }

    .walkthrough-preview {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 640 / 420;
    }

    .walkthrough-preview img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 640 / 420;
        object-fit: cover;
    }

    .walkthrough-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        width: 100%;
        min-width: 0;
    }

    .walkthrough-content .btn {
        max-width: 100%;
        margin-top: auto;
    }

    .walkthrough-label,
    .walkthrough-title {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

@media (max-width: 767px) {
    .walkthrough-section {
        padding: var(--space-64) 0;
    }

    .walkthrough-heading {
        margin-bottom: var(--space-32);
    }

    .walkthrough-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-24);
    }

    .walkthrough-content .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .walkthrough-section {
        padding: var(--space-48) 0;
    }

    .walkthrough-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-20);
    }

    .walkthrough-content {
        padding: var(--space-16);
    }

    .walkthrough-label,
    .walkthrough-title,
    .walkthrough-content .btn {
        overflow-wrap: anywhere;
    }
}

/* ==================================================
   CONTACT RESPONSIVE
================================================== */

@media (max-width: 1100px) {
    .contact-layout {
        width: 100%;
        max-width: 760px;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-24);
    }

    .contact-form-panel,
    .rera-panel {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 991px) {
    .contact-layout,
    .contact-form,
    .contact-form .form-row,
    .contact-form .form-group,
    .rera-panel {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-form .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .contact-submit-btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .form-consent {
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: var(--space-48) 0;
    }

    .contact-form-panel,
    .rera-panel {
        padding: var(--space-16);
    }

    .rera-qr img {
        width: 145px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: contain;
    }

    .rera-registration,
    .rera-registration strong,
    .rera-verify-link,
    .rera-note,
    .rera-note p {
        min-width: 0;
        max-width: 100%;
    }

    .rera-registration strong,
    .rera-verify-link,
    .rera-note p {
        overflow-wrap: anywhere;
    }

    .rera-verify-link {
        flex-wrap: wrap;
    }
}

/* ==================================================
   FAQ RESPONSIVE
================================================== */

@media (max-width: 991px) {
    .faq-layout {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
        gap: var(--space-24);
    }

    .faq-intro,
    .faq-accordion,
    .faq-item,
    .faq-item summary,
    .faq-answer {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: var(--space-48) 0;
    }

    .faq-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-32);
    }

    .faq-intro {
        position: static;
    }

    .faq-accordion,
    .faq-item {
        width: 100%;
    }

    .faq-item summary {
        gap: var(--space-16);
        min-height: 52px;
        padding: var(--space-16) var(--space-20);
    }

    .faq-item summary > span:first-child {
        flex: 1;
        min-width: 0;
        overflow-wrap: break-word;
    }

    .faq-icon {
        flex: 0 0 18px;
        margin-left: auto;
    }

    .faq-answer {
        padding: 0 var(--space-20) var(--space-20);
    }

    .faq-answer p,
    .faq-support-link {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-24);
        padding: var(--space-24);
    }

    .faq-cta-content,
    .faq-cta .btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-support {
        padding: var(--space-16);
    }

    .faq-item summary {
        min-height: 48px;
        padding: var(--space-16);
    }

    .faq-answer {
        padding: 0 var(--space-16) var(--space-16);
    }

    .faq-item summary > span:first-child,
    .faq-answer p,
    .faq-support-link,
    .faq-cta-content,
    .faq-cta-content h3,
    .faq-cta-content p,
    .faq-cta .btn {
        overflow-wrap: anywhere;
    }

    .faq-cta {
        padding: var(--space-20);
    }

    .faq-cta .btn {
        white-space: normal;
    }
}

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

@media (max-width: 767px) {
    .site-visit-note {
        font-size: 11px;
        line-height: 1.5;
        text-align: center;
    }

    .disclaimer-text {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.7;
        color: rgba(104, 117, 122, 0.78);
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .site-visit-note,
    .disclaimer-text {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

