/* ========================================
   FONTS
   ======================================== */
@font-face {
    font-family: 'vogun-medium';
    src: url('../fonts/VOGUN-MEDIUM.TTF');
}

@font-face {
    font-family: 'orlean';
    src: url('../fonts/ORLEAN.TTF');
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --brown: #8B5E3C;
    --brown-light: #C4966A;
    --brown-dark: #5C3D1E;
    --cream: #FAF7F2;
    --cream-dark: #F0EAE0;
    --text: #3A2E26;
    --muted: #9A8A7A;
    --line: #D9C9B8;
    --white: #FFFFFF;
    --shadow: rgba(139, 94, 60, 0.12);
    --accent-gold: #b38b59;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important;
    /*letter-spacing: 0.5px;*/
}


a,
button,
.nav-btn,
.tab,
.facing-tab,
.unit-cell,
.explore-btn,
[role="button"],
input[type="submit"] {
    cursor: pointer !important;
}

input,
textarea,
select {
    cursor: text !important;
}

/* ── GLOBAL BACKGROUND IMAGE WITH OPACITY ── */
body {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    
    background-image: url('https://yellow-kudu-681369.hostingersite.com/assets/images/projects/Triangle_bg_abstract.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    opacity: 0.4; 
}

/* Ensure all main wrappers are transparent so the background is visible */
.section-with-bg, 
main, 
.wrapper {
    background: transparent !important;
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3 {
    font-family: 'vogun-medium' ;
}

p,
li {
    font-family: 'orlean' ;
}
span {
    font-family: 'vogun-medium' ;
}

.serif-title {
    font-family: 'vogun-medium' ;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.content {
    width: 100%;
    font-size: 3rem;
    color: #997156;
    line-height: 1.4;
    font-family: 'vogun-medium';
}

.contents {
    font-size: 2.6rem;
    font-weight: bold;
    color: #997156;
    line-height: 1.4;
}

.gap-6 {
    gap: 0.8rem !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    z-index: 1000;
}

.logo-img {
    max-width: 140px;
    height: auto;
    display: block;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: #b38b59;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 1100;
}

.main-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.main-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-nav-links li {
    margin: 0 0 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.main-menu.active .main-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.main-menu.active .main-nav-links li:nth-child(1) { transition-delay: 0.10s; }
.main-menu.active .main-nav-links li:nth-child(2) { transition-delay: 0.18s; }
.main-menu.active .main-nav-links li:nth-child(3) { transition-delay: 0.26s; }
.main-menu.active .main-nav-links li:nth-child(4) { transition-delay: 0.34s; }
.main-menu.active .main-nav-links li:nth-child(5) { transition-delay: 0.42s; }

.main-nav-links a {
    text-decoration: none;
    font-size: 34px;
    color: #b38b59;
    display: inline-block;
    transition: 0.3s ease;
    letter-spacing: 0.9px;
}

.main-nav-links a:hover {
    color: #8b6a3e;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: stretch;
    z-index: 1;
}

.hero-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    margin-bottom: 2%;
}

.hero-content {
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
}

.hero-right {
    width: 100%;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    width: 44%;
    margin-bottom: -6%;
    margin-left: 25%;
}

.hero-links {
    margin-top: 30px;
}

.hero-links a {
    margin-right: 35px;
    text-decoration: none;
    font-size: 35px;
    color: #7a6d64;
}

.hero-buttons {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.hero-rera-id {
    display: block;
    font-family: 'orlean' ;
    font-size: 14px;
    color: #7d7268;
    letter-spacing: 0.9px;
    margin-bottom: 15px;
    margin-left: 28%;
}

.tagline {
    margin-left: 10%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hashtag {
    font-size: 6.5rem;
    font-weight: 100;
    color: #997156;
    margin-right: 10px;
}
.status-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
     font-family: 'orlean' ;
       font-size: 1.6rem;
        color: #6b4f31;
}

.status-text {
    color: #837a6a;
    margin-right: -10px;
    position: relative;
    transition: color 0.3s ease;
}

.status-text:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6b4f31;
}

.status-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.status-text:hover + .status-circle,
.status-container:hover .status-circle {
    background-color: #6b4f31;
    border-color: #6b4f31;
}

.status-container:hover .status-text {
    color: #6b4f31;
}

/* ========================================
   HERO INFO BAR
   ======================================== */
.hero-info {
    margin-top: -7%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #9a7156;
    color: #fcf4d4;
    padding: 30px;
    border-radius: 25px;
    font-family: 'poppins-light' ;
    position: relative;
    z-index: 10;
    margin-left: 40px;
    margin-right: 40px;
    flex-wrap: nowrap;
}

.info-item {
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
}

.info-item:last-child {
    border-right: none;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item h3 {
      margin: 0;
    font-size: 30px;
    color: #f0c87a;
    font-family: 'orlean';
    white-space: nowrap;
    line-height: 1;
    margin-right: 21px;
    letter-spacing: 0.9px;
}

.info-item h3 sup {
    font-size: 0.7rem;
    vertical-align: super;
}

.info-item p {
    margin: 0;
    color: #f5f5f5;
    line-height: 1.3;
    letter-spacing: 0.9px;
}

.info-item.highlight h3 {
    font-family: 'poppins-light' ;
    color: #f0c87a;
}

/* ========================================
   BUTTONS
   ======================================== */
.btns-outline:hover::after {
    width: 70%;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background: transparent;
    font-family: 'orlean' ;
    font-size: 17px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 4px;
}

.explore-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

/* ========================================
   HYBRID SECTION
   ======================================== */
.hybrid-section {
    padding: 120px 80px;
}

.hybrid-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.hybrid-left {
    width: 40%;
}

.hybrid-left p {
    font-size: 60px;
    color: #8b6a4e;
    line-height: 1.1;
    text-align: end !important;
    font-family: 'vogun-medium';
}

.hybrid-right {
    width: 60%;
    text-align: justify;
    letter-spacing: 0.9px;
}

.hybrid-right p {
    font-size: 19px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}

.play-icon {
   display: inline-block;
    background: #8b6a4e;
    color: #fff;
    font-size: 32px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 75px;
    margin-right: 10px;
    margin-bottom: 17px;
}

.play-icon.has-video {
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.play-icon.has-video:hover {
    background: #6b4f38;
    transform: scale(1.08);
}

/* Video popup modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.video-modal-overlay.active {
    display: flex;
}
.video-modal-box {
    position: relative;
    width: 90vw;
    max-width: 960px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.video-modal-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-modal-aspect iframe,
.video-modal-aspect video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.video-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 2px 10px 4px;
    border-radius: 6px;
    z-index: 10;
    transition: background 0.2s;
}
.video-modal-close:hover {
    background: rgba(0,0,0,0.85);
}

.rera {
    margin-top: 40px;
    font-weight: 500;
    color: #444;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-heading p {
    margin-top: 8px !important;
    font-size: 20px !important;
    color: #555 !important;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    position: relative;
    padding-bottom: 60px;
}

.location-section .section-heading,
.location-section .proximity-grid,
.location-section .map-container {
    position: relative;
    z-index: 1;
}

.proximity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 40px auto;
    max-width: 900px;
}

.prox-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.prox-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    opacity: 0.5;
}

.prox-item h6 {
    font-family: 'vogun-medium' ;
    font-size: 30px;
    font-weight: 100;
    color: #a06f46;
    margin: 0 0 6px 0;
}

.prox-item p {
    font-family: 'Orlean' ;
    font-size: 19px;
    color: #161616;
    margin: 0;
    letter-spacing: 0.9px;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PROJECT CARDS
   ======================================== */
.projects-container {
    display: flex;
    gap: 24px;
    padding: 20px 40px 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-card {
    display: flex;
    flex-direction: row;
    background: #fdf3ec;
    border-radius: 20px;
    overflow: hidden;
    width: calc(55% - 122px);
    height:250px;
    min-width: 300px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.project-card .image-side {
    width: 50%;
    position: relative;
    flex-shrink: 0;
}

.project-card .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.project-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-family: 'orlean' ;
    font-weight: 500;
    letter-spacing: 0.9px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.badge.ready,
.ready {
    background: #4ecba0;
    color: white;
}

.badge.construction,
.construction {
    background: #e8d44d;
    color: #5a4a00;
}

.project-card .content-side {
    padding: 24px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.project-card .content-side h3 {
    font-family: 'orlean';
    font-weight: 100;
    font-size: 28px;
    color: #9e7451;
    margin: 0;
    line-height: 1.1;
    text-align: start;
     margin-bottom:10px;
}

.project-card .content-side h3 span {
  font-family: 'orlean';
    font-size: 34px;
    font-weight: 100;
    color: #4274b5;
    line-height: 1.1;
     margin-bottom:10px;
}

.project-card .content-side p {
    font-family: 'orlean' ;
    font-size: 19px;
    color: #565252;
    margin: 0;
    text-align: start;
}

.card-tags {
   display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 7px 1px 10px 1px;
}

.card-tags .tag {
  display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'poppins-light';
    font-size: 14px;
    color: #4f4f4f;
}

.card-tags .tag i {
    color: #6d92c1;
    font-size: 0.75rem;
}

.image-side {
    width: 45%;
    position: relative;
}

.image-side img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.content-side {
    padding: 20px;
    width: 55%;
}

/* ========================================
   SWIPER / CAROUSEL
   ======================================== */
.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.swiper-slide {
    width: 70%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2% !important;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0.4;
    filter: grayscale(100%);
}

.swiper-slide-active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slide-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slide-content p {
    font-size: 24px;
}

.swiper-slide-active .slide-content {
    opacity: 1;
}

.nav-btn {
    cursor: pointer;
}

.progress-container {
    width: 300px;
    height: 1px;
    background: #e2e8f0;
    margin-top: 2.5rem;
    position: relative;
}

.progress-fill {
    position: absolute;
    height: 2px;
    background: #b38b59;
    top: -1px;
    width: 0%;
    transition: 0.6s;
}

.project-gallery .swiper-slide img {
    filter: blur(2px);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-gallery .swiper-slide.swiper-slide-active img,
.project-gallery .swiper-slide:hover img {
    filter: none;
}

.mySwiper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.mySwiper .swiper-slide {
    width: 70% !important;
    margin-left: 0;
}

.mySwiper .swiper-slide > div:first-child {
    width: 100%;
    margin-left: 0%;
}

.mySwiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    border: none !important;
    filter: none !important;
    transform: none !important;
}

.mySwiper .swiper-slide-active img {
    filter: grayscale(0%) !important;
}

.mySwiper .swiper-slide:not(.swiper-slide-active) img {
    filter: grayscale(100%) !important;
}

.grey-swiper {
    width: 100%;
}

/* ========================================
   STATUS IMAGE BOX
   ======================================== */
.status-image-box {
    width: 100%;
    aspect-ratio: 21 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
}

.status-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   PAGE LAYOUT
   ======================================== */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeDown 0.7s ease both;
}

.header h1 {
   font-family: 'Vogun-Medium';
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: #9A7156;
    letter-spacing: 0.9px;
}

.header-line {
    width: 597px;
    max-width: 94%;
    height: 1px;
    background: #a06f46;
    margin: 14px auto;
}

.header-sub {
    font-weight: 300;
    font-size: 24px;
    color: #4c4742;
}

/* ========================================
   TABS
   ======================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    animation: fadeDown 0.7s 0.1s ease both;
}

.tab {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--muted);
    cursor: pointer;
    padding-bottom: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    position: relative;
    top: 1px;
    user-select: none;
}

.tab.active {
    border-radius: 0 !important;
    color: var(--brown-dark);
    border-bottom: 2px solid var(--brown);
    font-weight: 500;
    background: #fff;
}

.tab:hover:not(.active) {
    color: var(--brown);
}

.tab-panel {
    display: none;
    animation: fadeUp 0.5s ease both;
}

.tab-panel.active {
    display: block;
}

/* ========================================
   SITE PLAN
   ======================================== */
.site-plan-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 4px 32px var(--shadow);
}

.site-plan-title {
    font-family: 'vogun-medium' ;
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 24px;
    text-align: center;
}

.site-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.site-block {
    border: 1.5px solid var(--line);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background: var(--cream-dark);
}

.site-block-title {
    font-family: 'vogun-medium' ;
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.site-block-sub {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.9px;
}

.site-block-units {
    font-size: 1.6rem;
    font-family: 'orlean';
    color: var(--brown);
    margin-top: 8px;
}

.site-map-svg {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.site-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.amenity-item {
    background: var(--cream-dark);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px 10px;
    text-align: center;
}

.amenity-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.amenity-name {
    font-size: 0.72rem;
    letter-spacing: 0.9px;
    color: var(--muted);
    text-transform: uppercase;
}

/* ========================================
   TOWER / FLOOR PLAN LAYOUT
   ======================================== */
.main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.floorplan-wrap {
    padding: 32px;
    position: relative;
}

.entry-label {
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
}

.floorplan-svg {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
}

.compass-wrap {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 72px;
    height: 72px;
}

.compass-img {
    width: 548px;
    height: 548px;
    object-fit: contain;
}

.tower-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream-dark);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--brown-dark);
    margin-bottom: 16px;
}

.tower-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brown);
    display: inline-block;
}

/* ========================================
   RIGHT PANEL
   ======================================== */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.facing-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.facing-tab {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    cursor: pointer;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    position: relative;
    top: 1px;
    transition: all 0.2s;
    user-select: none;
}

.facing-tab.active {
    color: var(--brown-dark);
    border-bottom: 2px solid var(--brown);
    font-weight: 500;
}

.facing-tab:hover:not(.active) {
    color: var(--brown);
}

.facing-panel {
    display: none;
    animation: fadeUp 0.4s ease both;
}

.facing-panel.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
}

.info-area {
    font-family: 'orlean' ;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1;
    margin-right: 67px;
    margin-top: 45px;
}

.info-area span {
    font-size: 1.3rem;
    font-family: 'orlean' ;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-left: 4px;
    display: flex;
}

.info-bhk {
    font-family: 'orlean';
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-top: 4px;
}

.info-bhk small {
    font-family: 'orlean' ;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    grid-template-rows: repeat(3, 40px);
    gap: 7px;
    margin-top: 16px;
}

.unit-cell {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1.5px solid var(--line);
    background: var(--cream-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.unit-cell.active {
    background: var(--brown);
    border-color: var(--brown);
}

.unit-cell.available {
    background: #b38b593d !important;
    border-color: #7b4b2f !important;
}

.unit-cell:hover:not(.active) {
    border-color: var(--brown-light);
    background: rgba(139, 94, 60, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 2px 12px var(--shadow);
}

.info-label {
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.info-value {
    font-family: 'vogun-medium' ;
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 600;
}

/* ========================================
   LEGEND
   ======================================== */
.legend {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 2px 12px var(--shadow);
}

.legend-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.legend-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.legend-name {
    color: var(--text);
}

.legend-dim {
    color: var(--muted);
    font-family: 'orlean';
    font-size: 0.88rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.section.in-view {
    animation: slideUp 1s ease-out forwards;
}

/* ========================================
   MOBILE HERO (Hidden on Desktop)
   ======================================== */
.hero-mobile-only {
    display: none;
}

/* ========================================
   RESPONSIVE: 1440px and below
   ======================================== */
@media (max-width: 1440px) {
    .hero-left {
        padding: 60px;
        margin-bottom: 4%;
    }

    .hero-info {
        margin-top: -8%;
        padding: 20px 30px;
    }

    .hero-rera-id {
        margin-left: 20%;
    }
}

/* ========================================
   RESPONSIVE: 1199px and below
   ======================================== */
@media (max-width: 1199px) {
    nav {
        padding: 16px 24px;
    }

    .hero {
        padding-left: 40px;
        min-height: 92vh;
        background-position: center;
    }

    .logo {
        width: 75%;
        margin-left: 0;
    }

    .hashtag {
        font-size: 5rem;
    }

    .content {
        font-size: 1.8rem;
    }

    .status-container {
        gap: 18px;
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-info {
        margin-top: -10%;
        margin-left: 20px;
        margin-right: 20px;
        padding: 22px 18px;
        flex-wrap: nowrap;
    }

    .info-item {
        padding: 4px 10px;
    }

    .info-item h3 {
        font-size: 25px;
        margin-right: 10px;
    }

    .hybrid-section {
        padding: 80px 40px;
    }

    .hybrid-container {
        gap: 40px;
    }

    .hybrid-left p {
        font-size: 54px;
    }

    .hybrid-right p {
        font-size: 17px;
    }

    .projects-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-line {
        width: 80%;
    }

    .site-plan-wrap,
    .floorplan-wrap {
        padding: 24px;
    }

    .main {
        gap: 28px;
        grid-template-columns: 1fr 300px;
    }
}

/* ========================================
   RESPONSIVE: 1024px and below (Tablet)
   ======================================== */
@media (max-width: 1024px) {
    .hero-rera-id {
        margin-left: 0;
        text-align: left;
        padding-left: 10px;
    }

    .tagline {
        margin-left: -57px;
    }

    .facing-tabs {
        gap: 196px;
        justify-content: flex-start;
    }

    .grey-swiper {
        width: 97%;
    }
}

/* ========================================
   RESPONSIVE: 991px and below
   ======================================== */
@media (max-width: 991px) {
    nav {
        padding: 14px 20px;
    }

    .hero-left {
        width: 100%;
        padding: 0;
    }

    .logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .tagline {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0;
    }

    .hashtag {
        font-size: 4.2rem;
        line-height: 1;
        margin-right: 8px;
    }

    .content {
        font-size: 2rem;
        line-height: 1.2;
    }

    .status-container {
        font-size: 1rem;
        gap: 14px;
        margin-top: 18px;
    }

    .status-circle {
        width: 12px;
        height: 12px;
    }

    .hero-info {
        margin-top: -70px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .info-item {
        width: 33.33%;
        border-right: none;
        padding: 12px 10px;
    }

    .info-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .info-item h3 {
        font-size: 24px;
        line-height: 1.1;
        margin-right: 0;
    }

    .info-item.highlight h3 {
        font-size: 1.5rem;
    }

    .hybrid-section {
        padding: 60px 24px;
    }

    .hybrid-container {
        flex-direction: column;
        gap: 24px;
    }

    .hybrid-left,
    .hybrid-right {
        width: 100%;
    }

    .hybrid-left p {
        font-size: 46px;
    }

    .play-icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }

    .section-heading p,
    .header-sub {
        font-size: 18px !important;
    }

    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 82% !important;
    }

    .progress-container {
        width: 220px;
    }

    .page {
        padding: 50px 20px 60px;
    }

    .tabs {
        gap: 30px;
    }

    .tab {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .right-panel {
        gap: 24px;
    }

    .info-card {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    .info-area {
        font-size: 2.2rem;
        margin-right: 0;
        margin-top: 0;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .proximity-grid {
        max-width: 100%;
        padding: 0 20px;
    }

    .prox-item h6 {
        font-size: 24px;
    }

    .prox-item p {
        font-size: 16px;
    }

    .map-container {
        padding: 0 20px;
    }

    .projects-container {
        gap: 18px;
        padding: 20px;
    }

    .project-card {
        width: 100%;
    }

    .project-card .content-side h3 {
        font-size: 26px;
         margin-bottom:10px;
    }

    .project-card .content-side h3 span {
        font-size: 30px;
         margin-bottom:10px;
    }

    .brand-heading {
        font-size: 2rem;
        padding: 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        padding: 36px 20px;
        gap: 24px;
    }

    .site-plan-grid {
        grid-template-columns: 1fr;
    }

    .compass-wrap {
        right: 16px;
        top: 16px;
    }
}

/* ========================================
   RESPONSIVE: 768px and below (Mobile)
   ======================================== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .main-nav {
        padding: 14px 16px;
    }

    .logo-img {
        max-width: 110px;
    }

    .main-nav-links a {
        font-size: 26px;
    }

    .main-nav-links li {
        margin-bottom: 20px;
    }

    /* Hide Desktop Hero, Show Mobile Hero */
    .hero,
    .hero-info {
        display: none !important;
    }

    /*.hero-mobile-only {*/
    /*    display: block;*/
    /*    width: 100%;*/
    /*    min-height: 76vh;*/
    /*    background-size: contain;*/
    /*}*/

    /*.hero-mobile-overlay {*/
    /*    min-height: 82.2vh !important;*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    justify-content: space-between;*/
    /*    padding: 18px 16px 14px;*/
    /*}*/

    .hero-mobile-top {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .mobile-brand-logo {
        width: 95px;
        height: auto;
        display: block;
    }

    .hero-mobile-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .mobile-project-logo {
        width: 213px;
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 1%;
    }

    .mobile-rera {
        font-size: 16px;
        color: #a06f46;
        display: block;
        margin-bottom: 18px;
        letter-spacing: 0.9px;
    }

    .mobile-tagline {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        margin-bottom: 18px;
    }

    .mobile-hashtag {
        font-size: 53px !important;
        line-height: 1;
        color: #9a7156;
        font-weight: 600;
    }

    .mobile-tagline-content {
        font-size: 39px;
        line-height: 1.15;
        color: #9A7156;
        font-weight: 600;
        text-align: left;
    }

    .mobile-status-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 22px;
    }

    .mobile-status-text {
        font-size: 18px;
        color: #6b4f31;
        text-decoration: none;
        border-bottom: 1px solid #c9b39f;
        padding-bottom: 2px;
    }
    
    .mobile-status-circle {
        width: 10px;
        height: 10px;
        border: 1px solid #c9b39f;
        border-radius: 50%;
        display: inline-block;
    }

    .hero-mobile-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background: #a67c5b;
        border-radius: 8px 8px 0 0;
        padding: 10px 12px 8px;
    }

    .mobile-info-top,
    .mobile-info-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-info-top {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .mobile-info-bottom {
        padding-top: 8px;
    }

    .mobile-info-block {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mobile-info-inline {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        padding: 15px;
        font-weight: 400;
        color: #f6d88f;
        line-height: 1;
    }

    .mobile-info-inline h5 {
        font-size: 1.2rem;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        margin: 0;
        color: #f5e6e6;
        line-height: 1.1;
        font-weight: 300;
        letter-spacing: 0.9px;
    }

    .mobile-info-inline p {
        font-size: 19px;
        padding-top: 8px;
    }

    .mobile-location {
        flex: 1.3;
        text-align: left;
        padding-right: 8px;
    }

    .mobile-location h5 {
        font-size: 18px;
    }

    .mobile-community {
        flex: 1.2;
        text-align: left;
        padding: 0 8px;
    }

    .mobile-community p {
        font-size: 8px;
    }

    .mobile-price {
        flex: 1;
        text-align: left;
        padding-left: 8px;
    }

    .mobile-price h5 {
        font-size: 18px;
    }

    .mobile-price p {
        font-size: 8px;
        display: inline-block;
        margin-left: 4px;
        vertical-align: middle;
    }

    .mobile-divider {
        width: 1px;
        height: 22px;
        background: rgba(255, 255, 255, 0.35);
        flex-shrink: 0;
    }

    .mobile-price sup {
        font-size: 9px;
        position: relative;
        top: -0.35em;
    }

    /* Hero RERA ID */
    .hero-rera-id {
        margin-left: 0;
        text-align: center;
        font-size: 11px;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 40px 20px;
    }

    .hybrid-container {
        flex-direction: column;
        gap: 24px;
    }

    .hybrid-left,
    .hybrid-right {
        width: 100%;
    }

    .hybrid-left h2 {
        font-size: 2.4rem;
    }

    .hybrid-right p {
        font-size: 15px;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 86% !important;
    }

    .slide-content h2 {
        font-size: 1.5rem !important;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .progress-container {
        width: 180px;
    }

    .grey-swiper {
        width: 97%;
    }

    /* Floor Plan */
    .page {
        padding: 24px 16px 60px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .tabs {
        gap: 30%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        font-size: 0.78rem;
        padding-bottom: 12px;
        white-space: nowrap;
        padding-right: 20px;
        letter-spacing: 0.06em;
    }

    .main {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .floorplan-wrap {
        padding: 16px;
        overflow-x: auto;
    }

    .floorplan-svg {
        min-width: 320px;
        width: 100%;
        height: auto;
    }

    .compass-wrap {
        width: 48px;
        height: 48px;
        right: 16px;
        top: 16px;
    }

    .compass-img {
        width: 548px;
        height: 548px;
        object-fit: contain;
    }

    .right-panel {
        width: 100%;
        gap: 20px;
    }

    .facing-tabs {
        gap: 30%;
    }

    .facing-tab {
        font-size: 0.8rem;
    }

    .info-card {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .info-area {
        font-size: 2rem;
    }

    .unit-grid {
        gap: 6px;
    }

    .unit-cell {
        width: 34px;
        height: 34px;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 16px;
        overflow-x: auto;
    }

    .site-plan-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .site-map-svg {
        min-width: 300px;
        width: 100%;
        height: auto;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 20px 0;
        padding: 0;
    }

    .prox-item {
        padding: 16px 20px !important;
        border-bottom: 1px solid rgba(200, 184, 154, 0.33);
        text-align: left;
    }

    .prox-item:not(:last-child)::after {
        display: none !important;
    }

    .prox-item h3 {
        font-size: 1.3rem;
    }

    .prox-item p {
        font-size: 14px !important;
    }

    .map-container {
        padding: 0 16px 30px;
    }

    /* Project Cards */
    .projects-container {
        flex-direction: column !important;
        padding: 16px;
        gap: 16px;
    }

    .project-card {
        width: 100% !important;
        height: 400px;
        min-width: unset;
        flex-direction: row;
    }

    .project-card .image-side {
        width: 40%;
        min-height: 130px;
    }

    .project-card .content-side {
        width: 60%;
        padding: 14px 12px;
        gap: 6px;
    }

    .project-card .content-side h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .project-card .content-side h3 span {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card-tags {
        flex-direction: row;
        gap: 25%;
    }

    .card-tags .tag {
        font-size: 0.68rem;
    }

    .explore-btn {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.8rem !important;
    }

    .section-heading p {
        font-size: 0.9rem !important;
    }

    /* Banner */
    .banner-area {
        margin: 20px 0;
    }

    .brand-heading {
        font-size: 1.4rem;
        padding: 0 16px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 30px 20px;
        gap: 28px;
    }

    .footer-logo {
        width: 50%;
        height: auto;
        display: block;
        margin-left: initial;
        margin-right: auto;
    }

    .address,
    .footer-col ul li a,
    .footer-col h4 {
        font-size: 15px !important;
    }

    .social-icons i {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding: 12px 16px;
        text-align: center;
    }

    .checkbox input {
        margin-left: 0 !important;
        margin-right: 8px !important;
    }
}

/* ========================================
   RESPONSIVE: 767px and below
   ======================================== */
@media (max-width: 767px) {
    nav {
        padding: 12px 16px;
    }

    .logo-area .logo-img {
        max-width: 120px;
        height: auto;
    }

    .hero {
        min-height: 72vh;
        padding: 100px 16px 30px;
        background-position: center;
    }

    .logo {
        width: 120px;
        margin-bottom: 14px;
    }

    .hero-left span[style] {
        margin-left: 0 !important;
        display: block;
        font-size: 12px;
    }

    .tagline {
        justify-content: flex-start !important;
        align-items: center !important;
        margin-top: 10px;
        margin-left: 0;
    }

    .hashtag {
        font-size: 2.9rem;
        margin-right: 6px;
    }

    .content {
        font-size: 1.3rem;
        line-height: 1.25;
    }

    .status-container {
        gap: 10px;
        font-size: 0.85rem;
        line-height: 1.4;
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .status-text {
        margin-right: 0;
    }

    .status-circle {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .hero-info {
        margin: 12px;
        margin-top: 14px;
        padding: 12px 10px;
        border-radius: 16px;
    }

    .info-item {
        width: 50%;
        padding: 10px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .info-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .info-item:last-child {
        width: 100%;
        border-bottom: none;
    }

    .info-item h3 {
        font-size: 20px;
    }

    .info-item p {
        font-size: 12px;
    }

    .info-item.highlight h3 {
        font-size: 1.2rem;
    }

    .section-with-bg {
        padding: 20px 0 30px;
    }

    .hybrid-section {
        padding: 36px 16px;
    }

    .hybrid-left p {
        font-size: 34px;
        line-height: 1.15;
    }

    .play-icon {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
        margin-right: 6px;
    }

    .hybrid-right {
        text-align: left;
    }

    .hybrid-right p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .header,
    .section-heading {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header h1,
    .section-heading h1 {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    .header-sub,
    .section-heading p {
        font-size: 15px !important;
    }

    .header-line,
    .section-line {
        width: 78%;
        max-width: 78%;
    }

    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .swiper-slide-active {
        transform: scale(1);
    }

    .slide-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .slide-content p {
        font-size: 14px !important;
        max-width: 100% !important;
        padding: 0 12px;
    }

    .nav-btn svg {
        width: 38px;
        height: 38px;
    }

    .progress-container {
        width: 100%;
        margin-top: 0;
    }

    .page {
        padding: 30px 16px 60px;
    }

    .tabs {
        gap: 13%;
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        font-size: 0.82rem;
        padding-bottom: 10px;
        flex: 0 0 auto;
    }

    .site-plan-wrap,
    .floorplan-wrap {
        padding: 14px;
        overflow-x: auto;
    }

    .site-map-svg {
        min-width: 560px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .amenity-item {
        padding: 10px 8px;
    }

    .amenity-name {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
    }

    .entry-label {
        left: -8px;
        font-size: 0.55rem;
    }

    .tower-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .compass-img {
        max-width: 100%;
        height: auto;
    }

    .facing-tabs {
        gap: 28%;
        overflow-x: auto;
    }

    .facing-tab {
        white-space: nowrap;
        flex: 0 0 auto;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .info-card {
        gap: 0;
        padding: 36px;
    }

    .info-area {
        font-size: 1.7rem;
        line-height: 1.1;
    }

    .info-area span {
        font-size: 1rem;
    }

    .info-bhk {
        font-size: 1.45rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 32px);
        grid-template-rows: repeat(2, 32px);
        gap: 6px;
        margin-top: 8px;
    }

    .unit-cell {
        width: 32px;
        height: 32px;
    }

    .status-container[style] {
        margin-left: 0 !important;
        justify-content: center;
        padding: 0 16px;
        text-align: center;
    }

    .location-section {
        padding-bottom: 30px;
    }

    .proximity-grid {
        flex-direction: column;
        margin: 20px 0;
        padding: 0 16px;
    }

    .prox-item {
        text-align: left;
        padding: 14px 0;
    }

    .prox-item h6 {
        font-size: 20px;
    }

    .prox-item p {
        font-size: 14px;
    }

    .map-container {
        padding: 0 16px;
    }

    .projects-container {
        padding: 16px;
        gap: 16px;
    }

    .project-card {
        flex-direction: column;
        min-width: 100%;
        border-radius: 16px;
    }

    .project-card .image-side,
    .project-card .content-side {
        width: 100%;
    }

    .project-card .image-side img {
        height: 220px;
        border-radius: 0;
    }

    .project-card .content-side {
        padding: 16px;
    }

    .project-card .content-side h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-card .content-side h3 span {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .project-card .content-side p {
        font-size: 15px;
    }

    .card-tags .tag {
        font-size: 13px;
    }

    .explore-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .brand-heading {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: center;
    }

    .banner-area div[style] {
        margin-right: 10px !important;
        text-align: center !important;
        margin-right: 0 !important;
        margin-top: 12px;
    }

    .hero-explore-link img {
        width: 100%;
        height: auto;
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        padding: 28px 16px;
        gap: 24px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-logo {
        width: 50%;
        height: auto;
        display: block;
        margin-right: auto;
    }

    .address {
        font-size: 14px;
        line-height: 1.6;
    }

    .social-icons {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .footer-col h6,
    .footer-col h4 {
        font-size: 18px !important;
    }

    .footer-col ul li a {
        font-size: 14px !important;
    }

    .checkbox {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        line-height: 1.5;
    }

    .checkbox input {
        margin: 4px 0 0 0 !important;
        flex: 0 0 auto;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.5;
        padding: 12px 16px;
        text-align: center;
    }

    .footer-bottom img {
        width: 24px !important;
        display: inline-block !important;
        vertical-align: middle;
    }

    .grey-swiper {
        width: 97%;
    }
}

/* ========================================
   RESPONSIVE: 480px — Standard Mobile (Most phones)
   ======================================== */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    /* Navigation */
    .main-nav {
        padding: 12px 14px;
    }

    .logo-img {
        max-width: 100px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .main-nav-links a {
        font-size: 22px;
    }

    /* Hero */
    .hero {
        min-height: 66vh;
        padding-top: 90px;
    }

    .hashtag {
        font-size: 2.4rem;
    }

    .content {
        font-size: 1.1rem;
    }

    .hero-info {
        margin: 10px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    /* Mobile Hero */
    /*.hero-mobile-overlay {*/
    /*    padding: 16px 12px 12px;*/
    /*    min-height: 92vh !important;*/
    /*}*/

    .mobile-brand-logo {
        width: 85px;
    }

    .mobile-project-logo {
        width: 140px;
    }

    .mobile-hashtag {
        font-size: 57px !important;
        
    }

    .mobile-tagline-content {
        font-size: 26px;
    }

    .mobile-status-text {
        font-size: 16px;
    }

    .mobile-status-container {
        gap: 6px;
    }

    .hero-mobile-info {
        width: 100%;
        max-width: 100%;
        padding: 10px 10px 8px;
        border-radius: 6px 6px 0 0;
    }

    .mobile-info-inline {
        gap: 4px;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        font-size: 15px;
        padding: 12px;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        font-size: 14px;
        padding-top: 8px;
    }

    .mobile-divider {
        height: 20px;
        margin-left: 8px;
    }

    .mobile-location {
        flex: 1.2;
        padding-right: 6px;
    }

    .mobile-community {
        flex: 1.15;
        padding: 0 6px;
    }

    .mobile-price {
        padding-left: 6px;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 30px 14px;
    }

    .hybrid-left p {
        font-size: 34px;
        text-align: start !important;
        line-height: 1.2;
    }

    .hybrid-right p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin-right: 8px;
        margin-bottom: 12px;
    }

    /* Headers */
    .header h1,
    .section-heading h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .header-sub,
    .section-heading p {
        font-size: 14px !important;
    }

    .header-line,
    .section-line {
        width: 85%;
    }

    /* Tabs */
    .tabs {
        gap: 16px;
        padding: 0 14px;
    }

    .tab {
        font-size: 0.75rem;
        padding-bottom: 10px;
        letter-spacing: 0.04em;
    }

    /* Floor Plan */
    .page {
        padding: 60px 12px 60px;
    }

    .floorplan-wrap {
        padding: 12px;
    }

    .floorplan-svg {
        min-width: 280px;
    }

    .compass-wrap {
        width: 40px;
        height: 40px;
        right: 12px;
        top: 12px;
    }

    .facing-tabs {
        gap: 10%;
    }

    .facing-tab {
        font-size: 13px;
        padding-bottom: 8px;
    }

    .info-area {
        font-size: 1.6rem;
    }

    .info-area span {
        font-size: 0.9rem;
    }

    .info-bhk {
        font-size: 1.3rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 30px);
        grid-template-rows: repeat(2, 30px);
        gap: 5px;
    }

    .unit-cell {
        width: 30px;
        height: 30px;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 14px;
    }

    .info-label {
        font-size: 0.6rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 12px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .amenity-item {
        padding: 10px 6px;
    }

    .amenity-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .amenity-name {
        font-size: 0.58rem;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
    }

    .prox-item {
        padding: 12px 14px !important;
    }

    .prox-item h6 {
        font-size: 18px;
    }

    .prox-item p {
        font-size: 13px !important;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .slide-content p {
        font-size: 13px !important;
        padding: 0 8px;
    }

    .progress-container {
        width: 100%;
        margin-top: 0;
    }

    /* Project Cards */
    .projects-container {
        padding: 12px;
        gap: 12px;
    }

    .project-card {
        flex-direction: column;
        height: auto;
        border-radius: 14px;
    }

    .project-card .image-side {
        width: 100%;
        min-height: unset;
    }

    .project-card .image-side img {
        height: 100%;
        border-radius: 0;
    }

    .project-card .content-side {
        width: 100%;
        padding: 14px 12px;
    }

    .project-card .content-side h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .project-card .content-side h3 span {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .project-card .content-side p {
        font-size: 14px;
    }

    .card-tags {
        gap: 12px;
        margin: 6px 0 8px;
    }

    .card-tags .tag {
        font-size: 12px;
    }

    .explore-btn {
        font-size: 13px;
        padding: 7px 14px;
        gap: 6px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.6rem !important;
    }

    .section-heading p {
        font-size: 0.85rem !important;
    }

    /* Brand / Banner */
    .brand-heading {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .banner-area {
        margin: 14px 0;
    }

    /* Footer */
    .footer-container {
        padding: 24px 14px;
        gap: 20px;
    }

    .footer-logo {
        width: 55%;
    }

    .address {
        font-size: 13px;
    }

    .footer-col h4,
    .footer-col h6 {
        font-size: 16px !important;
    }

    .footer-col ul li a {
        font-size: 13px !important;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 10px 12px;
    }

    /* Other Homes Grid — single column */
    .other-homes-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   RESPONSIVE: 320px — Small Mobile (iPhone SE, Galaxy S)
   ======================================== */
@media (max-width: 380px) {
    html, body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    /* Navigation */
    .main-nav {
        padding: 10px 12px;
    }

    .logo-img {
        max-width: 85px;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
    }

    .main-nav-links a {
        font-size: 18px;
    }

    .main-nav-links li {
        margin-bottom: 14px;
    }

    /* Mobile Hero */
    /*.hero-mobile-overlay {*/
    /*    padding: 12px 10px 10px;*/
    /*    min-height: 90vh;*/
    /*}*/

    .mobile-brand-logo {
        width: 72px;
    }

    .mobile-project-logo {
        width: 140px;
    }

    .mobile-hashtag {
        font-size: 30px !important;
    }

    .mobile-tagline-content {
        font-size: 21px;
        line-height: 1.2;
    }

    .mobile-tagline {
        gap: 4px;
        margin-bottom: 12px;
    }

    .mobile-rera {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .mobile-status-container {
        gap: 5px;
        margin-bottom: 16px;
    }

    .mobile-status-text {
        font-size: 13px;
    }

    .mobile-status-circle {
        width: 8px;
        height: 8px;
    }

    .hero-mobile-info {
        padding: 8px 8px 6px;
        border-radius: 5px 5px 0 0;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        font-size: 13px;
        padding: 8px;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        font-size: 11px;
        padding-top: 6px;
    }

    .mobile-divider {
        height: 16px;
        margin-left: 6px;
    }

    .mobile-info-top {
        padding-bottom: 6px;
    }

    .mobile-info-bottom {
        padding-top: 6px;
    }

    /* Hero (desktop — hidden, but safe fallback) */
    .hashtag {
        font-size: 2rem;
    }

    .content {
        font-size: 1rem;
    }

    .info-item h3 {
        font-size: 15px;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 24px 12px;
    }

    .hybrid-left p {
        font-size: 28px;
        line-height: 1.2;
        text-align: start !important;
    }

    .hybrid-right p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .play-icon {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 13px;
        margin-right: 6px;
        margin-bottom: 10px;
    }

    /* Headers */
    .header h1,
    .section-heading h1 {
        font-size: 1.4rem !important;
        line-height: 1.2;
    }

    .header-sub,
    .section-heading p {
        font-size: 13px !important;
    }

    .header-line,
    .section-line {
        width: 88%;
    }

    .header {
        margin-bottom: 24px;
    }

    /* Tabs */
    .tabs {
        gap: 10px;
        padding: 0 12px;
        overflow-x: auto;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        font-size: 0.68rem;
        padding-bottom: 8px;
        letter-spacing: 0.02em;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Page */
    .page {
        padding: 16px 10px 60px;
    }

    /* Floor Plan */
    .floorplan-wrap {
        padding: 10px;
    }

    .floorplan-svg {
        min-width: 260px;
    }

    .compass-wrap {
        width: 34px;
        height: 34px;
        right: 10px;
        top: 10px;
    }

    .entry-label {
        font-size: 0.45rem;
        left: -10px;
    }

    .tower-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .facing-tabs {
        gap: 12%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .facing-tabs::-webkit-scrollbar {
        display: none;
    }

    .facing-tab {
        font-size: 12px;
        padding-bottom: 8px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .info-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .info-area {
        font-size: 1.4rem;
    }

    .info-area span {
        font-size: 0.8rem;
    }

    .info-bhk {
        font-size: 1.15rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 26px);
        grid-template-rows: repeat(2, 26px);
        gap: 4px;
        margin-top: 6px;
    }

    .unit-cell {
        width: 26px;
        height: 26px;
        border-radius: 4px;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 12px;
    }

    .info-label {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }

    .info-value {
        font-size: 0.82rem;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 10px;
    }

    .site-plan-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
        margin-top: 16px;
    }

    .amenity-item {
        padding: 8px 5px;
    }

    .amenity-icon {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .amenity-name {
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }

    /* Legend */
    .legend {
        padding: 12px;
    }

    .legend-title {
        font-size: 0.6rem;
        margin-bottom: 8px;
    }

    .legend-item {
        font-size: 0.72rem;
    }

    .legend-dim {
        font-size: 0.78rem;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0;
        margin: 14px 0;
    }

    .prox-item {
        padding: 10px 10px !important;
    }

    .prox-item h6 {
        font-size: 15px;
    }

    .prox-item p {
        font-size: 12px !important;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .slide-content h2 {
        font-size: 1.2rem !important;
    }

    .slide-content p {
        font-size: 12px !important;
        padding: 0 6px;
    }

    .nav-btn svg {
        width: 30px;
        height: 30px;
    }

    .progress-container {
        width: 100%;
    }

    /* Project Cards */
    .projects-container {
        padding: 10px;
        gap: 10px;
    }

    .project-card {
        flex-direction: column;
        height: auto;
        border-radius: 12px;
    }

    .project-card .image-side {
        width: 100%;
    }

    .project-card .image-side img {
        /*height: 160px;*/
        border-radius: 0;
    }

    .project-card .content-side {
        width: 100%;
        padding: 12px 10px;
    }

    .project-card .content-side h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .project-card .content-side h3 span {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .project-card .content-side p {
        font-size: 13px;
    }

    .card-tags {
        gap: 8px;
        margin: 5px 0 7px;
        flex-wrap: wrap;
    }

    .card-tags .tag {
        font-size: 11px;
    }

    .explore-btn {
        font-size: 12px;
        padding: 6px 12px;
        gap: 5px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.4rem !important;
    }

    .section-heading p {
        font-size: 0.78rem !important;
    }

    /* Status container */
    .status-container {
        gap: 8px;
        font-size: 0.78rem;
    }

    .status-circle {
        width: 8px;
        height: 8px;
    }

    /* Brand / Banner */
    .brand-heading {
        font-size: 1rem;
        line-height: 1.35;
        padding: 0 10px;
    }

    /* Footer */
    .footer-container {
        padding: 20px 12px;
        gap: 18px;
    }

    .footer-logo {
        width: 60%;
    }

    .address {
        font-size: 12px;
        line-height: 1.55;
    }

    .footer-col h4,
    .footer-col h6 {
        font-size: 14px !important;
    }

    .footer-col ul li a {
        font-size: 12px !important;
    }

    .social-icons i {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 8px 12px;
        line-height: 1.6;
    }

    .footer-bottom img {
        width: 18px !important;
    }

    .checkbox {
        font-size: 11px;
        gap: 6px;
    }

    /* Other Homes Grid */
    .other-homes-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    /*    .hero-mobile-overlay {*/
    /*    padding: 16px 12px 12px;*/
    /*    min-height: 100vh !important;*/
    /*}*/

}

/* ========================================
   HERO RERA ID VISIBILITY
   ======================================== */
.hero-rera-id {
    display: none;
}
@media (max-width: 1024px) {
    .hero-rera-id {
        display: inline-block;
    }
}

/* ========================================
   EXPLORE LINK HOVER
   ======================================== */
.explore-link:hover .link-text {
    color: #7b4b2f !important;
}

/* ========================================
   STATIC GRID FOR OTHER HOMES
   ======================================== */
.other-homes-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}

.other-homes-grid .project-card {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .other-homes-grid {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 768px) {
    .hero-mobile-only {
        display: block;
        width: 100%;
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        overflow: hidden;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 18px 16px 14px;
    }
}

@media (max-width: 480px) {
    .hero-mobile-only {
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        padding: 16px 12px 12px;
    }
}

@media (max-width: 380px) {
    .hero-mobile-only {
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        padding: 12px 10px 10px;
    }
}



/* ========================================
   FONTS
   ======================================== */
@font-face {
    font-family: 'vogun-medium';
    src: url('../fonts/VOGUN-MEDIUM.TTF');
}

@font-face {
    font-family: 'orlean';
    src: url('../fonts/ORLEAN.TTF');
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --brown: #8B5E3C;
    --brown-light: #C4966A;
    --brown-dark: #5C3D1E;
    --cream: #FAF7F2;
    --cream-dark: #F0EAE0;
    --text: #3A2E26;
    --muted: #9A8A7A;
    --line: #D9C9B8;
    --white: #FFFFFF;
    --shadow: rgba(139, 94, 60, 0.12);
    --accent-gold: #b38b59;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default !important;
    /*letter-spacing: 0.5px;*/
}


a,
button,
.nav-btn,
.tab,
.facing-tab,
.unit-cell,
.explore-btn,
[role="button"],
input[type="submit"] {
    cursor: pointer !important;
}

input,
textarea,
select {
    cursor: text !important;
}

/* â”€â”€ GLOBAL BACKGROUND IMAGE WITH OPACITY â”€â”€ */
body {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    
    background-image: url('https://yellow-kudu-681369.hostingersite.com/assets/images/projects/Triangle_bg_abstract.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    opacity: 0.4; 
}

/* Ensure all main wrappers are transparent so the background is visible */
.section-with-bg, 
main, 
.wrapper {
    background: transparent !important;
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3 {
    font-family: 'vogun-medium' ;
}

p,
li {
    font-family: 'orlean' ;
}
span {
    font-family: 'vogun-medium' ;
}

.serif-title {
    font-family: 'vogun-medium' ;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.content {
    width: 100%;
    font-size: 3rem;
    color: #997156;
    line-height: 1.4;
    font-family: 'vogun-medium';
}

.contents {
    font-size: 2.6rem;
    font-weight: bold;
    color: #997156;
    line-height: 1.4;
}

.gap-6 {
    gap: 0.8rem !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    z-index: 1000;
}

.logo-img {
    max-width: 140px;
    height: auto;
    display: block;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    z-index: 1101;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: #b38b59;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 1100;
}

.main-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.main-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-nav-links li {
    margin: 0 0 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

.main-menu.active .main-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.main-menu.active .main-nav-links li:nth-child(1) { transition-delay: 0.10s; }
.main-menu.active .main-nav-links li:nth-child(2) { transition-delay: 0.18s; }
.main-menu.active .main-nav-links li:nth-child(3) { transition-delay: 0.26s; }
.main-menu.active .main-nav-links li:nth-child(4) { transition-delay: 0.34s; }
.main-menu.active .main-nav-links li:nth-child(5) { transition-delay: 0.42s; }

.main-nav-links a {
    text-decoration: none;
    font-size: 34px;
    color: #b38b59;
    display: inline-block;
    transition: 0.3s ease;
    letter-spacing: 0.9px;
}

.main-nav-links a:hover {
    color: #8b6a3e;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: stretch;
    z-index: 1;
}

.hero-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    margin-bottom: 2%;
}

.hero-content {
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
}

.hero-right {
    width: 100%;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    width: 44%;
    margin-bottom: -6%;
    margin-left: 25%;
}

.hero-links {
    margin-top: 30px;
}

.hero-links a {
    margin-right: 35px;
    text-decoration: none;
    font-size: 35px;
    color: #7a6d64;
}

.hero-buttons {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.hero-rera-id {
    display: block;
    font-family: 'orlean' ;
    font-size: 14px;
    color: #7d7268;
    letter-spacing: 0.9px;
    margin-bottom: 15px;
    margin-left: 28%;
}

.tagline {
    margin-left: 10%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hashtag {
    font-size: 6.5rem;
    font-weight: 100;
    color: #997156;
    margin-right: 10px;
}
.status-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
     font-family: 'orlean' ;
       font-size: 1.6rem;
        color: #6b4f31;
}

.status-text {
    color: #837a6a;
    margin-right: -10px;
    position: relative;
    transition: color 0.3s ease;
}

.status-text:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6b4f31;
}

.status-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.status-text:hover + .status-circle,
.status-container:hover .status-circle {
    background-color: #6b4f31;
    border-color: #6b4f31;
}

.status-container:hover .status-text {
    color: #6b4f31;
}

/* ========================================
   HERO INFO BAR
   ======================================== */
.hero-info {
    margin-top: -7%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #9a7156;
    color: #fcf4d4;
    padding: 30px;
    border-radius: 25px;
    font-family: 'poppins-light' ;
    position: relative;
    z-index: 10;
    margin-left: 40px;
    margin-right: 40px;
    flex-wrap: nowrap;
}

.info-item {
    padding: 0 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
}

.info-item:last-child {
    border-right: none;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item h3 {
      margin: 0;
    font-size: 30px;
    color: #f0c87a;
    font-family: 'orlean';
    white-space: nowrap;
    line-height: 1;
    margin-right: 21px;
    letter-spacing: 0.9px;
}

.info-item h3 sup {
    font-size: 0.7rem;
    vertical-align: super;
}

.info-item p {
    margin: 0;
    color: #f5f5f5;
    line-height: 1.3;
    letter-spacing: 0.9px;
}

.info-item.highlight h3 {
    font-family: 'poppins-light' ;
    color: #f0c87a;
}

/* ========================================
   BUTTONS
   ======================================== */
.btns-outline:hover::after {
    width: 70%;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background: transparent;
    font-family: 'orlean' ;
    font-size: 17px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 4px;
}

.explore-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

/* ========================================
   HYBRID SECTION
   ======================================== */
.hybrid-section {
    padding: 120px 80px;
}

.hybrid-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.hybrid-left {
    width: 40%;
}

.hybrid-left p {
    font-size: 60px;
    color: #8b6a4e;
    line-height: 1.1;
    text-align: end !important;
    font-family: 'vogun-medium';
}

.hybrid-right {
    width: 60%;
    text-align: justify;
    letter-spacing: 0.9px;
}

.hybrid-right p {
    font-size: 19px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}

.play-icon {
   display: inline-block;
    background: #8b6a4e;
    color: #fff;
    font-size: 32px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 75px;
    margin-right: 10px;
    margin-bottom: 17px;
}

.play-icon.has-video {
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.play-icon.has-video:hover {
    background: #6b4f38;
    transform: scale(1.08);
}

/* Video popup modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.video-modal-overlay.active {
    display: flex;
}
.video-modal-box {
    position: relative;
    width: 90vw;
    max-width: 960px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.video-modal-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-modal-aspect iframe,
.video-modal-aspect video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.video-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 2px 10px 4px;
    border-radius: 6px;
    z-index: 10;
    transition: background 0.2s;
}
.video-modal-close:hover {
    background: rgba(0,0,0,0.85);
}

.rera {
    margin-top: 40px;
    font-weight: 500;
    color: #444;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-heading p {
    margin-top: 8px !important;
    font-size: 20px !important;
    color: #555 !important;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    position: relative;
    padding-bottom: 60px;
}

.location-section .section-heading,
.location-section .proximity-grid,
.location-section .map-container {
    position: relative;
    z-index: 1;
}

.proximity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 40px auto;
    max-width: 900px;
}

.prox-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.prox-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    opacity: 0.5;
}

.prox-item h6 {
    font-family: 'vogun-medium' ;
    font-size: 30px;
    font-weight: 100;
    color: #a06f46;
    margin: 0 0 6px 0;
}

.prox-item p {
    font-family: 'Orlean' ;
    font-size: 19px;
    color: #161616;
    margin: 0;
    letter-spacing: 0.9px;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PROJECT CARDS
   ======================================== */
.projects-container {
    display: flex;
    gap: 24px;
    padding: 20px 40px 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.project-card {
    display: flex;
    flex-direction: row;
    background: #fdf3ec;
    border-radius: 20px;
    overflow: hidden;
    width: calc(55% - 122px);
    height:250px;
    min-width: 300px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.project-card .image-side {
    width: 50%;
    position: relative;
    flex-shrink: 0;
}

.project-card .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.project-card .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-family: 'orlean' ;
    font-weight: 500;
    letter-spacing: 0.9px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.badge.ready,
.ready {
    background: #4ecba0;
    color: white;
}

.badge.construction,
.construction {
    background: #e8d44d;
    color: #5a4a00;
}

.project-card .content-side {
    padding: 24px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.project-card .content-side h3 {
    font-family: 'orlean';
    font-weight: 100;
    font-size: 28px;
    color: #9e7451;
    margin: 0;
    line-height: 1.1;
    text-align: start;
     margin-bottom:10px;
}

.project-card .content-side h3 span {
  font-family: 'orlean';
    font-size: 34px;
    font-weight: 100;
    color: #4274b5;
    line-height: 1.1;
     margin-bottom:10px;
}

.project-card .content-side p {
    font-family: 'orlean' ;
    font-size: 19px;
    color: #565252;
    margin: 0;
    text-align: start;
}

.card-tags {
   display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 7px 1px 10px 1px;
}

.card-tags .tag {
  display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'poppins-light';
    font-size: 14px;
    color: #4f4f4f;
}

.card-tags .tag i {
    color: #6d92c1;
    font-size: 0.75rem;
}

.image-side {
    width: 45%;
    position: relative;
}

.image-side img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.content-side {
    padding: 20px;
    width: 55%;
}

/* ========================================
   SWIPER / CAROUSEL
   ======================================== */
.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.swiper-slide {
    width: 70%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2% !important;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0.4;
    filter: grayscale(100%);
}

.swiper-slide-active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slide-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slide-content p {
    font-size: 24px;
}

.swiper-slide-active .slide-content {
    opacity: 1;
}

.nav-btn {
    cursor: pointer;
}

.progress-container {
    width: 300px;
    height: 1px;
    background: #e2e8f0;
    margin-top: 2.5rem;
    position: relative;
}

.progress-fill {
    position: absolute;
    height: 2px;
    background: #b38b59;
    top: -1px;
    width: 0%;
    transition: 0.6s;
}

.project-gallery .swiper-slide img {
    filter: blur(2px);
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-gallery .swiper-slide.swiper-slide-active img,
.project-gallery .swiper-slide:hover img {
    filter: none;
}

.mySwiper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.mySwiper .swiper-slide {
    width: 70% !important;
    margin-left: 0;
}

.mySwiper .swiper-slide > div:first-child {
    width: 100%;
    margin-left: 0%;
}

.mySwiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    border: none !important;
    filter: none !important;
    transform: none !important;
}

.mySwiper .swiper-slide-active img {
    filter: grayscale(0%) !important;
}

.mySwiper .swiper-slide:not(.swiper-slide-active) img {
    filter: grayscale(100%) !important;
}

.grey-swiper {
    width: 100%;
}

/* ========================================
   STATUS IMAGE BOX
   ======================================== */
.status-image-box {
    width: 100%;
    aspect-ratio: 21 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
}

.status-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   PAGE LAYOUT
   ======================================== */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeDown 0.7s ease both;
}

.header h1 {
   font-family: 'Vogun-Medium';
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    color: #9A7156;
    letter-spacing: 0.9px;
}

.header-line {
    width: 597px;
    max-width: 94%;
    height: 1px;
    background: #a06f46;
    margin: 14px auto;
}

.header-sub {
    font-weight: 300;
    font-size: 24px;
    color: #4c4742;
}

/* ========================================
   TABS
   ======================================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    animation: fadeDown 0.7s 0.1s ease both;
}

.tab {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--muted);
    cursor: pointer;
    padding-bottom: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    position: relative;
    top: 1px;
    user-select: none;
}

.tab.active {
    border-radius: 0 !important;
    color: var(--brown-dark);
    border-bottom: 2px solid var(--brown);
    font-weight: 500;
    background: #fff;
}

.tab:hover:not(.active) {
    color: var(--brown);
}

.tab-panel {
    display: none;
    animation: fadeUp 0.5s ease both;
}

.tab-panel.active {
    display: block;
}

/* ========================================
   SITE PLAN
   ======================================== */
.site-plan-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 4px 32px var(--shadow);
}

.site-plan-title {
    font-family: 'vogun-medium' ;
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 24px;
    text-align: center;
}

.site-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.site-block {
    border: 1.5px solid var(--line);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    background: var(--cream-dark);
}

.site-block-title {
    font-family: 'vogun-medium' ;
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.site-block-sub {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.9px;
}

.site-block-units {
    font-size: 1.6rem;
    font-family: 'orlean';
    color: var(--brown);
    margin-top: 8px;
}

.site-map-svg {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.site-amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.amenity-item {
    background: var(--cream-dark);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 14px 10px;
    text-align: center;
}

.amenity-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.amenity-name {
    font-size: 0.72rem;
    letter-spacing: 0.9px;
    color: var(--muted);
    text-transform: uppercase;
}

/* ========================================
   TOWER / FLOOR PLAN LAYOUT
   ======================================== */
.main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.floorplan-wrap {
    padding: 32px;
    position: relative;
}

.entry-label {
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
}

.floorplan-svg {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
}

.compass-wrap {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 72px;
    height: 72px;
}

.compass-img {
    width: 548px;
    height: 548px;
    object-fit: contain;
}

.tower-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream-dark);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--brown-dark);
    margin-bottom: 16px;
}

.tower-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brown);
    display: inline-block;
}

/* ========================================
   RIGHT PANEL
   ======================================== */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.facing-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.facing-tab {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    cursor: pointer;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    position: relative;
    top: 1px;
    transition: all 0.2s;
    user-select: none;
}

.facing-tab.active {
    color: var(--brown-dark);
    border-bottom: 2px solid var(--brown);
    font-weight: 500;
}

.facing-tab:hover:not(.active) {
    color: var(--brown);
}

.facing-panel {
    display: none;
    animation: fadeUp 0.4s ease both;
}

.facing-panel.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
}

.info-area {
    font-family: 'orlean' ;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1;
    margin-right: 67px;
    margin-top: 45px;
}

.info-area span {
    font-size: 1.3rem;
    font-family: 'orlean' ;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-left: 4px;
    display: flex;
}

.info-bhk {
    font-family: 'orlean';
    font-size: 2rem;
    font-weight: 400;
    color: var(--brown-dark);
    margin-top: 4px;
}

.info-bhk small {
    font-family: 'orlean' ;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    grid-template-rows: repeat(3, 40px);
    gap: 7px;
    margin-top: 16px;
}

.unit-cell {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1.5px solid var(--line);
    background: var(--cream-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.unit-cell.active {
    background: var(--brown);
    border-color: var(--brown);
}

.unit-cell.available {
    background: #b38b593d !important;
    border-color: #7b4b2f !important;
}

.unit-cell:hover:not(.active) {
    border-color: var(--brown-light);
    background: rgba(139, 94, 60, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 2px 12px var(--shadow);
}

.info-label {
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.info-value {
    font-family: 'vogun-medium' ;
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 600;
}

/* ========================================
   LEGEND
   ======================================== */
.legend {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px;
    box-shadow: 0 2px 12px var(--shadow);
}

.legend-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.legend-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.legend-name {
    color: var(--text);
}

.legend-dim {
    color: var(--muted);
    font-family: 'orlean';
    font-size: 0.88rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.section.in-view {
    animation: slideUp 1s ease-out forwards;
}

/* ========================================
   MOBILE HERO (Hidden on Desktop)
   ======================================== */
.hero-mobile-only {
    display: none;
}

/* ========================================
   RESPONSIVE: 1440px and below
   ======================================== */
@media (max-width: 1440px) {
    .hero-left {
        padding: 60px;
        margin-bottom: 4%;
    }

    .hero-info {
        margin-top: -8%;
        padding: 20px 30px;
    }

    .hero-rera-id {
        margin-left: 20%;
    }
}

/* ========================================
   RESPONSIVE: 1199px and below
   ======================================== */
@media (max-width: 1199px) {
    nav {
        padding: 16px 24px;
    }

    .hero {
        padding-left: 40px;
        min-height: 92vh;
        background-position: center;
    }

    .logo {
        width: 75%;
        margin-left: 0;
    }

    .hashtag {
        font-size: 5rem;
    }

    .content {
        font-size: 1.8rem;
    }

    .status-container {
        gap: 18px;
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .hero-info {
        margin-top: -10%;
        margin-left: 20px;
        margin-right: 20px;
        padding: 22px 18px;
        flex-wrap: nowrap;
    }

    .info-item {
        padding: 4px 10px;
    }

    .info-item h3 {
        font-size: 25px;
        margin-right: 10px;
    }

    .hybrid-section {
        padding: 80px 40px;
    }

    .hybrid-container {
        gap: 40px;
    }

    .hybrid-left p {
        font-size: 54px;
    }

    .hybrid-right p {
        font-size: 17px;
    }

    .projects-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-line {
        width: 80%;
    }

    .site-plan-wrap,
    .floorplan-wrap {
        padding: 24px;
    }

    .main {
        gap: 28px;
        grid-template-columns: 1fr 300px;
    }
}

/* ========================================
   RESPONSIVE: 1024px and below (Tablet)
   ======================================== */
@media (max-width: 1024px) {
    .hero-rera-id {
        margin-left: 0;
        text-align: left;
        padding-left: 10px;
    }

    .tagline {
        margin-left: -57px;
    }

    .facing-tabs {
        gap: 196px;
        justify-content: flex-start;
    }

    .grey-swiper {
        width: 97%;
    }
}

/* ========================================
   RESPONSIVE: 991px and below
   ======================================== */
@media (max-width: 991px) {
    nav {
        padding: 14px 20px;
    }

    .hero-left {
        width: 100%;
        padding: 0;
    }

    .logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .tagline {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-left: 0;
    }

    .hashtag {
        font-size: 4.2rem;
        line-height: 1;
        margin-right: 8px;
    }

    .content {
        font-size: 2rem;
        line-height: 1.2;
    }

    .status-container {
        font-size: 1rem;
        gap: 14px;
        margin-top: 18px;
    }

    .status-circle {
        width: 12px;
        height: 12px;
    }

    .hero-info {
        margin-top: -70px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .info-item {
        width: 33.33%;
        border-right: none;
        padding: 12px 10px;
    }

    .info-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .info-item h3 {
        font-size: 24px;
        line-height: 1.1;
        margin-right: 0;
    }

    .info-item.highlight h3 {
        font-size: 1.5rem;
    }

    .hybrid-section {
        padding: 60px 24px;
    }

    .hybrid-container {
        flex-direction: column;
        gap: 24px;
    }

    .hybrid-left,
    .hybrid-right {
        width: 100%;
    }

    .hybrid-left p {
        font-size: 46px;
    }

    .play-icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 16px;
    }

    .section-heading p,
    .header-sub {
        font-size: 18px !important;
    }

    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 82% !important;
    }

    .progress-container {
        width: 220px;
    }

    .page {
        padding: 50px 20px 60px;
    }

    .tabs {
        gap: 30px;
    }

    .tab {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .right-panel {
        gap: 24px;
    }

    .info-card {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    .info-area {
        font-size: 2.2rem;
        margin-right: 0;
        margin-top: 0;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .proximity-grid {
        max-width: 100%;
        padding: 0 20px;
    }

    .prox-item h6 {
        font-size: 24px;
    }

    .prox-item p {
        font-size: 16px;
    }

    .map-container {
        padding: 0 20px;
    }

    .projects-container {
        gap: 18px;
        padding: 20px;
    }

    .project-card {
        width: 100%;
    }

    .project-card .content-side h3 {
        font-size: 26px;
         margin-bottom:10px;
    }

    .project-card .content-side h3 span {
        font-size: 30px;
         margin-bottom:10px;
    }

    .brand-heading {
        font-size: 2rem;
        padding: 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        padding: 36px 20px;
        gap: 24px;
    }

    .site-plan-grid {
        grid-template-columns: 1fr;
    }

    .compass-wrap {
        right: 16px;
        top: 16px;
    }
}

/* ========================================
   RESPONSIVE: 768px and below (Mobile)
   ======================================== */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .main-nav {
        padding: 14px 16px;
    }

    .logo-img {
        max-width: 110px;
    }

    .main-nav-links a {
        font-size: 26px;
    }

    .main-nav-links li {
        margin-bottom: 20px;
    }

    /* Hide Desktop Hero, Show Mobile Hero */
    .hero,
    .hero-info {
        display: none !important;
    }

    /*.hero-mobile-only {*/
    /*    display: block;*/
    /*    width: 100%;*/
    /*    min-height: 76vh;*/
    /*    background-size: contain;*/
    /*}*/

    /*.hero-mobile-overlay {*/
    /*    min-height: 82.2vh !important;*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    justify-content: space-between;*/
    /*    padding: 18px 16px 14px;*/
    /*}*/

    .hero-mobile-top {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .mobile-brand-logo {
        width: 95px;
        height: auto;
        display: block;
    }

    .hero-mobile-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .mobile-project-logo {
        width: 213px;
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 1%;
    }

    .mobile-rera {
        font-size: 16px;
        color: #a06f46;
        display: block;
        margin-bottom: 18px;
        letter-spacing: 0.9px;
    }

    .mobile-tagline {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        margin-bottom: 18px;
    }

    .mobile-hashtag {
        font-size: 53px !important;
        line-height: 1;
        color: #9a7156;
        font-weight: 600;
    }

    .mobile-tagline-content {
        font-size: 39px;
        line-height: 1.15;
        color: #9A7156;
        font-weight: 600;
        text-align: left;
    }

    .mobile-status-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 22px;
    }

    .mobile-status-text {
        font-size: 18px;
        color: #6b4f31;
        text-decoration: none;
        border-bottom: 1px solid #c9b39f;
        padding-bottom: 2px;
    }
    
    .mobile-status-circle {
        width: 10px;
        height: 10px;
        border: 1px solid #c9b39f;
        border-radius: 50%;
        display: inline-block;
    }

    .hero-mobile-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background: #a67c5b;
        border-radius: 8px 8px 0 0;
        padding: 10px 12px 8px;
    }

    .mobile-info-top,
    .mobile-info-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-info-top {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .mobile-info-bottom {
        padding-top: 8px;
    }

    .mobile-info-block {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mobile-info-inline {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        padding: 15px;
        font-weight: 400;
        color: #f6d88f;
        line-height: 1;
    }

    .mobile-info-inline h5 {
        font-size: 1.2rem;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        margin: 0;
        color: #f5e6e6;
        line-height: 1.1;
        font-weight: 300;
    }

    .mobile-info-inline p {
        font-size: 19px;
        padding-top: 8px;
    }

    .mobile-location {
        flex: 1.3;
        text-align: left;
        padding-right: 8px;
    }

    .mobile-location h5 {
        font-size: 18px;
    }

    .mobile-community {
        flex: 1.2;
        text-align: left;
        padding: 0 8px;
    }

    .mobile-community p {
        font-size: 8px;
    }

    .mobile-price {
        flex: 1;
        text-align: left;
        padding-left: 8px;
    }

    .mobile-price h5 {
        font-size: 18px;
    }

    .mobile-price p {
        font-size: 8px;
        display: inline-block;
        margin-left: 4px;
        vertical-align: middle;
    }

    .mobile-divider {
        width: 1px;
        height: 22px;
        background: rgba(255, 255, 255, 0.35);
        flex-shrink: 0;
    }

    .mobile-price sup {
        font-size: 9px;
        position: relative;
        top: -0.35em;
    }

    /* Hero RERA ID */
    .hero-rera-id {
        margin-left: 0;
        text-align: center;
        font-size: 11px;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 40px 20px;
    }

    .hybrid-container {
        flex-direction: column;
        gap: 24px;
    }

    .hybrid-left,
    .hybrid-right {
        width: 100%;
    }

    .hybrid-left h2 {
        font-size: 2.4rem;
    }

    .hybrid-right p {
        font-size: 15px;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 86% !important;
    }

    .slide-content h2 {
        font-size: 1.5rem !important;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .progress-container {
        width: 180px;
    }

    .grey-swiper {
        width: 97%;
    }

    /* Floor Plan */
    .page {
        padding: 24px 16px 60px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .tabs {
        gap: 30%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        font-size: 0.78rem;
        padding-bottom: 12px;
        white-space: nowrap;
        padding-right: 20px;
        letter-spacing: 0.06em;
    }

    .main {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .floorplan-wrap {
        padding: 16px;
        overflow-x: auto;
    }

    .floorplan-svg {
        min-width: 320px;
        width: 100%;
        height: auto;
    }

    .compass-wrap {
        width: 48px;
        height: 48px;
        right: 16px;
        top: 16px;
    }

    .compass-img {
        width: 548px;
        height: 548px;
        object-fit: contain;
    }

    .right-panel {
        width: 100%;
        gap: 20px;
    }

    .facing-tabs {
        gap: 30%;
    }

    .facing-tab {
        font-size: 0.8rem;
    }

    .info-card {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .info-area {
        font-size: 2rem;
    }

    .unit-grid {
        gap: 6px;
    }

    .unit-cell {
        width: 34px;
        height: 34px;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 16px;
        overflow-x: auto;
    }

    .site-plan-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .site-map-svg {
        min-width: 300px;
        width: 100%;
        height: auto;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 20px 0;
        padding: 0;
    }

    .prox-item {
        padding: 16px 20px !important;
        border-bottom: 1px solid rgba(200, 184, 154, 0.33);
        text-align: left;
    }

    .prox-item:not(:last-child)::after {
        display: none !important;
    }

    .prox-item h3 {
        font-size: 1.3rem;
    }

    .prox-item p {
        font-size: 14px !important;
    }

    .map-container {
        padding: 0 16px 30px;
    }

    /* Project Cards */
    .projects-container {
        flex-direction: column !important;
        padding: 16px;
        gap: 16px;
    }

    .project-card {
        width: 100% !important;
        height: 400px;
        min-width: unset;
        flex-direction: row;
    }

    .project-card .image-side {
        width: 40%;
        min-height: 130px;
    }

    .project-card .content-side {
        width: 60%;
        padding: 14px 12px;
        gap: 6px;
    }

    .project-card .content-side h3 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .project-card .content-side h3 span {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .card-tags {
        flex-direction: row;
        gap: 25%;
    }

    .card-tags .tag {
        font-size: 0.68rem;
    }

    .explore-btn {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.8rem !important;
    }

    .section-heading p {
        font-size: 0.9rem !important;
    }

    /* Banner */
    .banner-area {
        margin: 20px 0;
    }

    .brand-heading {
        font-size: 1.4rem;
        padding: 0 16px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 30px 20px;
        gap: 28px;
    }

    .footer-logo {
        width: 50%;
        height: auto;
        display: block;
        margin-left: initial;
        margin-right: auto;
    }

    .address,
    .footer-col ul li a,
    .footer-col h4 {
        font-size: 15px !important;
    }

    .social-icons i {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding: 12px 16px;
        text-align: center;
    }

    .checkbox input {
        margin-left: 0 !important;
        margin-right: 8px !important;
    }
}

/* ========================================
   RESPONSIVE: 767px and below
   ======================================== */
@media (max-width: 767px) {
    nav {
        padding: 12px 16px;
    }

    .logo-area .logo-img {
        max-width: 120px;
        height: auto;
    }

    .hero {
        min-height: 72vh;
        padding: 100px 16px 30px;
        background-position: center;
    }

    .logo {
        width: 120px;
        margin-bottom: 14px;
    }

    .hero-left span[style] {
        margin-left: 0 !important;
        display: block;
        font-size: 12px;
    }

    .tagline {
        justify-content: flex-start !important;
        align-items: center !important;
        margin-top: 10px;
        margin-left: 0;
    }

    .hashtag {
        font-size: 2.9rem;
        margin-right: 6px;
    }

    .content {
        font-size: 1.3rem;
        line-height: 1.25;
    }

    .status-container {
        gap: 10px;
        font-size: 0.85rem;
        line-height: 1.4;
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .status-text {
        margin-right: 0;
    }

    .status-circle {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .hero-info {
        margin: 12px;
        margin-top: 14px;
        padding: 12px 10px;
        border-radius: 16px;
    }

    .info-item {
        width: 50%;
        padding: 10px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .info-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .info-item:last-child {
        width: 100%;
        border-bottom: none;
    }

    .info-item h3 {
        font-size: 20px;
    }

    .info-item p {
        font-size: 12px;
    }

    .info-item.highlight h3 {
        font-size: 1.2rem;
    }

    .section-with-bg {
        padding: 20px 0 30px;
    }

    .hybrid-section {
        padding: 36px 16px;
    }

    .hybrid-left p {
        font-size: 34px;
        line-height: 1.15;
    }

    .play-icon {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
        margin-right: 6px;
    }

    .hybrid-right {
        text-align: left;
    }

    .hybrid-right p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .header,
    .section-heading {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header h1,
    .section-heading h1 {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    .header-sub,
    .section-heading p {
        font-size: 15px !important;
    }

    .header-line,
    .section-line {
        width: 78%;
        max-width: 78%;
    }

    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .swiper-slide-active {
        transform: scale(1);
    }

    .slide-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .slide-content p {
        font-size: 14px !important;
        max-width: 100% !important;
        padding: 0 12px;
    }

    .nav-btn svg {
        width: 38px;
        height: 38px;
    }

    .progress-container {
        width: 100%;
        margin-top: 0;
    }

    .page {
        padding: 30px 16px 60px;
    }

    .tabs {
        gap: 13%;
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        font-size: 0.82rem;
        padding-bottom: 10px;
        flex: 0 0 auto;
    }

    .site-plan-wrap,
    .floorplan-wrap {
        padding: 14px;
        overflow-x: auto;
    }

    .site-map-svg {
        min-width: 560px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .amenity-item {
        padding: 10px 8px;
    }

    .amenity-name {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
    }

    .entry-label {
        left: -8px;
        font-size: 0.55rem;
    }

    .tower-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .compass-img {
        max-width: 100%;
        height: auto;
    }

    .facing-tabs {
        gap: 28%;
        overflow-x: auto;
    }

    .facing-tab {
        white-space: nowrap;
        flex: 0 0 auto;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .info-card {
        gap: 0;
        padding: 36px;
    }

    .info-area {
        font-size: 1.7rem;
        line-height: 1.1;
    }

    .info-area span {
        font-size: 1rem;
    }

    .info-bhk {
        font-size: 1.45rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 32px);
        grid-template-rows: repeat(2, 32px);
        gap: 6px;
        margin-top: 8px;
    }

    .unit-cell {
        width: 32px;
        height: 32px;
    }

    .status-container[style] {
        margin-left: 0 !important;
        justify-content: center;
        padding: 0 16px;
        text-align: center;
    }

    .location-section {
        padding-bottom: 30px;
    }

    .proximity-grid {
        flex-direction: column;
        margin: 20px 0;
        padding: 0 16px;
    }

    .prox-item {
        text-align: left;
        padding: 14px 0;
    }

    .prox-item h6 {
        font-size: 20px;
    }

    .prox-item p {
        font-size: 14px;
    }

    .map-container {
        padding: 0 16px;
    }

    .projects-container {
        padding: 16px;
        gap: 16px;
    }

    .project-card {
        flex-direction: column;
        min-width: 100%;
        border-radius: 16px;
    }

    .project-card .image-side,
    .project-card .content-side {
        width: 100%;
    }

    .project-card .image-side img {
        height: 220px;
        border-radius: 0;
    }

    .project-card .content-side {
        padding: 16px;
    }

    .project-card .content-side h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-card .content-side h3 span {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .project-card .content-side p {
        font-size: 15px;
    }

    .card-tags .tag {
        font-size: 13px;
    }

    .explore-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .brand-heading {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: center;
    }

    .banner-area div[style] {
        margin-right: 10px !important;
        text-align: center !important;
        margin-right: 0 !important;
        margin-top: 12px;
    }

    .hero-explore-link img {
        width: 100%;
        height: auto;
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        padding: 28px 16px;
        gap: 24px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-logo {
        width: 50%;
        height: auto;
        display: block;
        margin-right: auto;
    }

    .address {
        font-size: 14px;
        line-height: 1.6;
    }

    .social-icons {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .footer-col h6,
    .footer-col h4 {
        font-size: 18px !important;
    }

    .footer-col ul li a {
        font-size: 14px !important;
    }

    .checkbox {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        line-height: 1.5;
    }

    .checkbox input {
        margin: 4px 0 0 0 !important;
        flex: 0 0 auto;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.5;
        padding: 12px 16px;
        text-align: center;
    }

    .footer-bottom img {
        width: 24px !important;
        display: inline-block !important;
        vertical-align: middle;
    }

    .grey-swiper {
        width: 97%;
    }
}

/* ========================================
   RESPONSIVE: 480px â€” Standard Mobile (Most phones)
   ======================================== */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    /* Navigation */
    .main-nav {
        padding: 12px 14px;
    }

    .logo-img {
        max-width: 100px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .main-nav-links a {
        font-size: 22px;
    }

    /* Hero */
    .hero {
        min-height: 66vh;
        padding-top: 90px;
    }

    .hashtag {
        font-size: 2.4rem;
    }

    .content {
        font-size: 1.1rem;
    }

    .hero-info {
        margin: 10px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    /* Mobile Hero */
    /*.hero-mobile-overlay {*/
    /*    padding: 16px 12px 12px;*/
    /*    min-height: 92vh !important;*/
    /*}*/

    .mobile-brand-logo {
        width: 85px;
    }

    .mobile-project-logo {
        width: 140px;
    }

    .mobile-hashtag {
        font-size: 57px !important;
        
    }

    .mobile-tagline-content {
        font-size: 26px;
    }

    .mobile-status-text {
        font-size: 16px;
    }

    .mobile-status-container {
        gap: 6px;
    }

    .hero-mobile-info {
        width: 100%;
        max-width: 100%;
        padding: 10px 10px 8px;
        border-radius: 6px 6px 0 0;
    }

    .mobile-info-inline {
        gap: 4px;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        font-size: 15px;
        padding: 12px;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        font-size: 14px;
        padding-top: 8px;
    }

    .mobile-divider {
        height: 20px;
        margin-left: 8px;
    }

    .mobile-location {
        flex: 1.2;
        padding-right: 6px;
    }

    .mobile-community {
        flex: 1.15;
        padding: 0 6px;
    }

    .mobile-price {
        padding-left: 6px;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 30px 14px;
    }

    .hybrid-left p {
        font-size: 34px;
        text-align: start !important;
        line-height: 1.2;
    }

    .hybrid-right p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .play-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin-right: 8px;
        margin-bottom: 12px;
    }

    /* Headers */
    .header h1,
    .section-heading h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .header-sub,
    .section-heading p {
        font-size: 14px !important;
    }

    .header-line,
    .section-line {
        width: 85%;
    }

    /* Tabs */
    .tabs {
        gap: 16px;
        padding: 0 14px;
    }

    .tab {
        font-size: 0.75rem;
        padding-bottom: 10px;
        letter-spacing: 0.04em;
    }

    /* Floor Plan */
    .page {
        padding: 60px 12px 60px;
    }

    .floorplan-wrap {
        padding: 12px;
    }

    .floorplan-svg {
        min-width: 280px;
    }

    .compass-wrap {
        width: 40px;
        height: 40px;
        right: 12px;
        top: 12px;
    }

    .facing-tabs {
        gap: 10%;
    }

    .facing-tab {
        font-size: 13px;
        padding-bottom: 8px;
    }

    .info-area {
        font-size: 1.6rem;
    }

    .info-area span {
        font-size: 0.9rem;
    }

    .info-bhk {
        font-size: 1.3rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 30px);
        grid-template-rows: repeat(2, 30px);
        gap: 5px;
    }

    .unit-cell {
        width: 30px;
        height: 30px;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 14px;
    }

    .info-label {
        font-size: 0.6rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 12px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .amenity-item {
        padding: 10px 6px;
    }

    .amenity-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .amenity-name {
        font-size: 0.58rem;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
    }

    .prox-item {
        padding: 12px 14px !important;
    }

    .prox-item h6 {
        font-size: 18px;
    }

    .prox-item p {
        font-size: 13px !important;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .slide-content p {
        font-size: 13px !important;
        padding: 0 8px;
    }

    .progress-container {
        width: 100%;
        margin-top: 0;
    }

    /* Project Cards */
    .projects-container {
        padding: 12px;
        gap: 12px;
    }

    .project-card {
        flex-direction: column;
        height: auto;
        border-radius: 14px;
    }

    .project-card .image-side {
        width: 100%;
        min-height: unset;
    }

    .project-card .image-side img {
        height: 100%;
        border-radius: 0;
    }

    .project-card .content-side {
        width: 100%;
        padding: 14px 12px;
    }

    .project-card .content-side h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .project-card .content-side h3 span {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .project-card .content-side p {
        font-size: 14px;
    }

    .card-tags {
        gap: 12px;
        margin: 6px 0 8px;
    }

    .card-tags .tag {
        font-size: 12px;
    }

    .explore-btn {
        font-size: 13px;
        padding: 7px 14px;
        gap: 6px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.6rem !important;
    }

    .section-heading p {
        font-size: 0.85rem !important;
    }

    /* Brand / Banner */
    .brand-heading {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .banner-area {
        margin: 14px 0;
    }

    /* Footer */
    .footer-container {
        padding: 24px 14px;
        gap: 20px;
    }

    .footer-logo {
        width: 55%;
    }

    .address {
        font-size: 13px;
    }

    .footer-col h4,
    .footer-col h6 {
        font-size: 16px !important;
    }

    .footer-col ul li a {
        font-size: 13px !important;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 10px 12px;
    }

    /* Other Homes Grid â€” single column */
    .other-homes-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   RESPONSIVE: 320px â€” Small Mobile (iPhone SE, Galaxy S)
   ======================================== */
@media (max-width: 380px) {
    html, body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }

    /* Navigation */
    .main-nav {
        padding: 10px 12px;
    }

    .logo-img {
        max-width: 85px;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
    }

    .main-nav-links a {
        font-size: 18px;
    }

    .main-nav-links li {
        margin-bottom: 14px;
    }

    /* Mobile Hero */
    /*.hero-mobile-overlay {*/
    /*    padding: 12px 10px 10px;*/
    /*    min-height: 90vh;*/
    /*}*/

    .mobile-brand-logo {
        width: 72px;
    }

    .mobile-project-logo {
        width: 140px;
    }

    .mobile-hashtag {
        font-size: 30px !important;
    }

    .mobile-tagline-content {
        font-size: 21px;
        line-height: 1.2;
    }

    .mobile-tagline {
        gap: 4px;
        margin-bottom: 12px;
    }

    .mobile-rera {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .mobile-status-container {
        gap: 5px;
        margin-bottom: 16px;
    }

    .mobile-status-text {
        font-size: 13px;
    }

    .mobile-status-circle {
        width: 8px;
        height: 8px;
    }

    .hero-mobile-info {
        padding: 8px 8px 6px;
        border-radius: 5px 5px 0 0;
    }

    .mobile-info-inline h5,
    .mobile-location h5,
    .mobile-price h5 {
        font-size: 13px;
        padding: 8px;
    }

    .mobile-info-inline p,
    .mobile-community p,
    .mobile-price p {
        font-size: 11px;
        padding-top: 6px;
    }

    .mobile-divider {
        height: 16px;
        margin-left: 6px;
    }

    .mobile-info-top {
        padding-bottom: 6px;
    }

    .mobile-info-bottom {
        padding-top: 6px;
    }

    /* Hero (desktop â€” hidden, but safe fallback) */
    .hashtag {
        font-size: 2rem;
    }

    .content {
        font-size: 1rem;
    }

    .info-item h3 {
        font-size: 15px;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: 24px 12px;
    }

    .hybrid-left p {
        font-size: 28px;
        line-height: 1.2;
        text-align: start !important;
    }

    .hybrid-right p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .play-icon {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 13px;
        margin-right: 6px;
        margin-bottom: 10px;
    }

    /* Headers */
    .header h1,
    .section-heading h1 {
        font-size: 1.4rem !important;
        line-height: 1.2;
    }

    .header-sub,
    .section-heading p {
        font-size: 13px !important;
    }

    .header-line,
    .section-line {
        width: 88%;
    }

    .header {
        margin-bottom: 24px;
    }

    /* Tabs */
    .tabs {
        gap: 10px;
        padding: 0 12px;
        overflow-x: auto;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        font-size: 0.68rem;
        padding-bottom: 8px;
        letter-spacing: 0.02em;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Page */
    .page {
        padding: 16px 10px 60px;
    }

    /* Floor Plan */
    .floorplan-wrap {
        padding: 10px;
    }

    .floorplan-svg {
        min-width: 260px;
    }

    .compass-wrap {
        width: 34px;
        height: 34px;
        right: 10px;
        top: 10px;
    }

    .entry-label {
        font-size: 0.45rem;
        left: -10px;
    }

    .tower-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .facing-tabs {
        gap: 12%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .facing-tabs::-webkit-scrollbar {
        display: none;
    }

    .facing-tab {
        font-size: 12px;
        padding-bottom: 8px;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .info-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .info-area {
        font-size: 1.4rem;
    }

    .info-area span {
        font-size: 0.8rem;
    }

    .info-bhk {
        font-size: 1.15rem;
    }

    .unit-grid {
        grid-template-columns: repeat(4, 26px);
        grid-template-rows: repeat(2, 26px);
        gap: 4px;
        margin-top: 6px;
    }

    .unit-cell {
        width: 26px;
        height: 26px;
        border-radius: 4px;
    }

    /* Info Grid */
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 12px;
    }

    .info-label {
        font-size: 0.55rem;
        letter-spacing: 0.12em;
    }

    .info-value {
        font-size: 0.82rem;
    }

    /* Site Plan */
    .site-plan-wrap {
        padding: 10px;
    }

    .site-plan-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .site-amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
        margin-top: 16px;
    }

    .amenity-item {
        padding: 8px 5px;
    }

    .amenity-icon {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .amenity-name {
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }

    /* Legend */
    .legend {
        padding: 12px;
    }

    .legend-title {
        font-size: 0.6rem;
        margin-bottom: 8px;
    }

    .legend-item {
        font-size: 0.72rem;
    }

    .legend-dim {
        font-size: 0.78rem;
    }

    /* Proximity Grid */
    .proximity-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0;
        margin: 14px 0;
    }

    .prox-item {
        padding: 10px 10px !important;
    }

    .prox-item h6 {
        font-size: 15px;
    }

    .prox-item p {
        font-size: 12px !important;
    }

    /* Swiper */
    .swiper-slide,
    .mySwiper .swiper-slide {
        width: 100% !important;
        padding: 0 !important;
    }

    .slide-content h2 {
        font-size: 1.2rem !important;
    }

    .slide-content p {
        font-size: 12px !important;
        padding: 0 6px;
    }

    .nav-btn svg {
        width: 30px;
        height: 30px;
    }

    .progress-container {
        width: 100%;
    }

    /* Project Cards */
    .projects-container {
        padding: 10px;
        gap: 10px;
    }

    .project-card {
        flex-direction: column;
        height: auto;
        border-radius: 12px;
    }

    .project-card .image-side {
        width: 100%;
    }

    .project-card .image-side img {
        /*height: 160px;*/
        border-radius: 0;
    }

    .project-card .content-side {
        width: 100%;
        padding: 12px 10px;
    }

    .project-card .content-side h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .project-card .content-side h3 span {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .project-card .content-side p {
        font-size: 13px;
    }

    .card-tags {
        gap: 8px;
        margin: 5px 0 7px;
        flex-wrap: wrap;
    }

    .card-tags .tag {
        font-size: 11px;
    }

    .explore-btn {
        font-size: 12px;
        padding: 6px 12px;
        gap: 5px;
    }

    /* Section Headings */
    .section-heading h2 {
        font-size: 1.4rem !important;
    }

    .section-heading p {
        font-size: 0.78rem !important;
    }

    /* Status container */
    .status-container {
        gap: 8px;
        font-size: 0.78rem;
    }

    .status-circle {
        width: 8px;
        height: 8px;
    }

    /* Brand / Banner */
    .brand-heading {
        font-size: 1rem;
        line-height: 1.35;
        padding: 0 10px;
    }

    /* Footer */
    .footer-container {
        padding: 20px 12px;
        gap: 18px;
    }

    .footer-logo {
        width: 60%;
    }

    .address {
        font-size: 12px;
        line-height: 1.55;
    }

    .footer-col h4,
    .footer-col h6 {
        font-size: 14px !important;
    }

    .footer-col ul li a {
        font-size: 12px !important;
    }

    .social-icons i {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 8px 12px;
        line-height: 1.6;
    }

    .footer-bottom img {
        width: 18px !important;
    }

    .checkbox {
        font-size: 11px;
        gap: 6px;
    }

    /* Other Homes Grid */
    .other-homes-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    /*    .hero-mobile-overlay {*/
    /*    padding: 16px 12px 12px;*/
    /*    min-height: 100vh !important;*/
    /*}*/

}

/* ========================================
   HERO RERA ID VISIBILITY
   ======================================== */
.hero-rera-id {
    display: none;
}
@media (max-width: 1024px) {
    .hero-rera-id {
        display: inline-block;
    }
}

/* ========================================
   EXPLORE LINK HOVER
   ======================================== */
.explore-link:hover .link-text {
    color: #7b4b2f !important;
}

/* ========================================
   STATIC GRID FOR OTHER HOMES
   ======================================== */
.other-homes-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
}

.other-homes-grid .project-card {
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .other-homes-grid {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 768px) {
    .hero-mobile-only {
        display: block;
        width: 100%;
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        overflow: hidden;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 18px 16px 14px;
    }
}

@media (max-width: 480px) {
    .hero-mobile-only {
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        padding: 16px 12px 12px;
    }
}

@media (max-width: 380px) {
    .hero-mobile-only {
        min-height: 100svh;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-mobile-overlay {
        min-height: 100svh !important;
        padding: 12px 10px 10px;
    }
}

/* =========================================
   MOBILE STATUS LINKS - SAME AS FIRST IMAGE
   ========================================= */

.mobile-status-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 22px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.mobile-status-container .mobile-status-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    position: relative !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-status-container .link-text {
    position: relative !important;
    display: inline-block !important;
    color: #a5a5a5 !important;
    font-size: 1.3rem !important;
    line-height: 1.15 !important;
    transition: color 0.3s ease !important;
    padding-bottom: 6px !important;
}

/* underline */
.mobile-status-container .link-text::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: #a5a5a5 !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
    transform-origin: left center !important;
}

/* dot */
.mobile-status-container .explore-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 1.5px solid #7e95c8 !important;
    background: transparent !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

/* individual hover */
.mobile-status-container .mobile-status-link:hover .link-text,
.mobile-status-container .mobile-status-link:active .link-text,
.mobile-status-container .mobile-status-link.is-active .link-text {
    color: #8b5e3c !important;
}

.mobile-status-container .mobile-status-link:hover .link-text::after,
.mobile-status-container .mobile-status-link:active .link-text::after,
.mobile-status-container .mobile-status-link.is-active .link-text::after {
    background: #8b5e3c !important;
}

.mobile-status-container .mobile-status-link:hover .explore-dot,
.mobile-status-container .mobile-status-link:active .explore-dot,
.mobile-status-container .mobile-status-link.is-active .explore-dot {
    border-color: #7e95c8 !important;
    background: transparent !important;
    transform: scale(1.08);
}

/* mobile sizing */
@media (max-width: 768px) {
    .mobile-status-container {
        gap: 18px !important;
    }

    .mobile-status-container .link-text {
        font-size: 1.05rem !important;
    }

    .mobile-status-container .explore-dot {
        width: 9px !important;
        height: 9px !important;
    }
}

@media (max-width: 480px) {
    .mobile-status-container {
        gap: 14px !important;
    }

    .mobile-status-container .link-text {
        font-size: 0.95rem !important;
    }
}