/* ==========================================
   ELEVATED TYPOGRAPHY & SYSTEM VARIABLES
   ========================================== */
:root {
    --primary-color: #E63D6D;
    --primary-hover: #C92E5A;
    --title-color: #1A1A1A;
    --body-text: #4A4A4A;
    --bg-main: #FFFFFF;
    --bg-alt: #F8F9FA;
    --border-color: #E2E8F0;
    --white: #FFFFFF;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--title-color);
    letter-spacing: -0.2px;
}

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

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

button,
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.position-relative {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(230, 61, 109, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--title-color);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

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

.about-logo-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* Uniform Section Header System */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 16px auto 0;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.site-header.is-sticky {
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    color: var(--white);
    display: flex;
    /* flex-direction: column; */
}

.site-header.is-sticky .brand-logo {
    color: var(--title-color);
}

.logo-image {
    width: 190px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.site-header.is-sticky .nav-link {
    color: var(--title-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

.site-header.is-sticky .whatsapp-link {
    color: var(--title-color);
}

.whatsapp-icon {
    color: #25D366;
    font-size: 1.3rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
}

.site-header.is-sticky .mobile-toggle {
    color: var(--title-color);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    width: 280px;
    height: 100%;
    background: var(--white);
    margin-left: auto;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-close {
    align-self: flex-end;
    background: transparent;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ==========================================
   MODERN HERO SLIDER & CORNER CONTROLS
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.swiper-slide-active .kenburns-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    color: var(--white);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Custom Hero Pagination Bullets */
.hero-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 73px !important;
    width: auto !important;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition-fast);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 50px;
    background: var(--primary-color);
}

/* Corner Control Stack (Bottom Right) */
.hero-controls-corner {
    position: absolute;
    bottom: 25px;
    right: 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

/* Play Button directly above Arrows */
.hero-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(230, 61, 109, 0.5);
    position: relative;
    transition: var(--transition-smooth);
}

.hero-play-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-hover);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulseRing 2s infinite ease-out;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Modern Corner Navigation Arrows */
.hero-nav-buttons {
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================
   ABOUT SECTION (BALANCED 4-CARD GRID)
   ========================================== */
.about-lead-text {
    /* max-width: 1100px; */
    margin: 0 auto 50px;
    text-align: justify;
    font-size: 1.15rem;
    color: #555;
}

.about-logo {
    width: 180px;
    height: auto;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.about-card .card-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card .card-value {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--title-color);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.about-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-card .card-sub {
    font-size: 0.85rem;
    color: #777;
}

/* RERA Specific Card Styling */
.rera-card {
    background: #282828;
    color: var(--white);
    border-color: #282828;
}

.rera-card .card-icon {
    color: var(--primary-color);
}

.rera-card .card-title {
    color: var(--white);
}

.rera-card .card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.rera-card .rera-num {
    font-family: var(--font-body);
    color: #D1D5DB;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================
   FLOOR PLAN (VERTICAL TAB DESIGN - NO TEXT)
   ========================================== */
.vertical-floor-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.vertical-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v-tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    color: var(--title-color);
    text-align: left;
    transition: var(--transition-fast);
}

.v-tab-btn i {
    font-size: 1.2rem;
    color: #777;
    transition: var(--transition-fast);
}

.v-tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.v-tab-btn.active i {
    color: var(--white);
}

.vertical-tabs-content {
    position: relative;
}

.v-tab-pane {
    display: none;
}

.v-tab-pane.active {
    display: block;
}

.pure-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #FAF8F5;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

@media(max-width:756px) {
    .pure-image-card {
        min-height: auto;
    }
}

.pure-image-card img {
    max-height: 480px;
    width: 100%;
}

.pure-zoom-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

.pure-image-card:hover .pure-zoom-badge {
    background: var(--primary-color);
}

/* ==========================================
   HIGHLIGHTS (UNIQUE & ARCHITECTURAL BG)
   ========================================== */
.highlights-section {
    position: relative;
    background-color: #282828;
    color: var(--white);
}

.highlights-section .section-title {
    color: var(--white);
}

.blueprint-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vector Blueprint Grid Pattern */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.7;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--primary-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-color);
}

.highlight-card .card-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(230, 61, 109, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.highlight-card p {
    color: #94A3B8;
    font-size: 0.92rem;
    text-align: center;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 61, 109, 0.15);
    /* Subtle accent tint */
    border-radius: 10%;
    margin-bottom: 16px;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.card-icon img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: invert(1) brightness(100);
}

/* ==========================================
   LOCATION ACCORDION & MAP IFRAME
   ========================================== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--title-color);
    text-align: left;
    transition: var(--transition-fast);
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.acc-arrow {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background: rgba(230, 61, 109, 0.04);
    color: var(--primary-color);
}

.accordion-content {
    display: none;
    padding: 20px 24px 20px;
    background: var(--white);
}

.acc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
}

.acc-list li:last-child {
    border-bottom: none;
}

.acc-list li strong {
    color: var(--primary-color);
    font-size: 0.85rem;
    background: rgba(230, 61, 109, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
}

.location-map-iframe-wrap {
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(35 35 35 / 67%);
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto 32px;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
}



/* ==========================================
   GALLERY (CLEAN 4-COLUMN GRID)
   ========================================== */
.gallery-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-card-hover i {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.gallery-card-hover span {
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-card-hover {
    opacity: 1;
}

/* ==========================================
   FOOTER & UTILITY BUTTONS
   ========================================== */
.site-footer {
    background: var(--title-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 8px; */
}

.footer-logo img {
    width: 160px;
    height: auto;
}

.footer-disclaimer {
    font-size: 0.78rem;
    max-width: 500px;
}

/* Scroll-to-Top Button */
.go-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--title-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 980;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.go-to-top-btn.show-top {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top-btn:hover {
    background-color: var(--primary-color);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    position: relative;
    overflow-y: auto;
}

.form-modal-container {
    max-width: 600px;
    padding: 36px;
}

.video-modal-container {
    max-width: 800px;
    background: transparent;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    font-size: 1.4rem;
    color: var(--title-color);
}

.video-modal-container .modal-close {
    color: var(--white);
    top: -36px;
    right: 0;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-header-block {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--title-color);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-alt);
}

.phone-input-group,
.otp-input-group {
    display: flex;
    gap: 8px;
}

.phone-input-group .form-control {
    flex-grow: 1;
}

.readonly-input {
    background: #eee;
    font-weight: 600;
}

.verified-badge {
    padding: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.otp-hint {
    font-size: 0.75rem;
    color: #666;
}

.form-status-msg {
    margin-top: 8px;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
    text-align: center;
}

.form-status-msg.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.responsive-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.responsive-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 900;
    padding: 10px 16px;
    gap: 10px;
}

.btn-mobile-whatsapp,
.btn-mobile-enquire {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-mobile-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-mobile-enquire {
    background: var(--primary-color);
    color: var(--white);
}

.group-fields {
    display: flex;
    gap: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-cards-grid,
    .highlights-grid,
    .gallery-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid,
    .vertical-floor-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-controls-corner {
        bottom: 30px;
        right: 20px;
    }

    .hero-pagination {
        bottom: 20px !important;
        left: 20px !important;
    }

    .about-cards-grid,
    .highlights-grid,
    .gallery-grid-4col {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    .go-to-top-btn {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width:767px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .whatsapp-link {
        display: none;
    }

    #mainHeader .open-enquiry-modal {
        display: none;
    }

    .about-logo-header {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 16px;
    }
}

.footer-right {
    margin-right: 20px;
}

@media (max-width: 1299px) {
    .footer-right {
        margin-right: 75px;
    }
}

@media (max-width: 547px) {
    .footer-right {
        margin-right: 50px;
    }
}

@media (max-width: 756px) {
    .logo-image {
        width: 165px;
    }
}