/* 
==================================================================
   SHREE GANESH REALTY - PREMIUM CSS DESIGN SYSTEM
   Fonts: Manrope (Global Typography)
==================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Warm Light Theme with Depth */
    --bg-dark: #faf8f5;
    --bg-dark-light: #f3efe9;
    --bg-dark-card: #ffffff;
    --primary-gold: #b38a3e;
    --primary-gold-hover: #9c732b;
    --primary-gold-rgb: 179, 138, 62;
    --primary-gold-light: rgba(179, 138, 62, 0.08);
    --text-light: #2d3748;
    --text-muted: #5a6577;
    --text-dark: #1a202c;
    --text-dark-muted: #4a5568;
    --white: #1a202c;
    --border-gold: rgba(179, 138, 62, 0.25);
    --border-light: rgba(26, 32, 44, 0.1);

    /* Layout & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-premium: 0 20px 40px rgba(26, 32, 44, 0.08);
    --shadow-card: 0 10px 30px rgba(26, 32, 44, 0.06);
    --shadow-light: 0 4px 6px -1px rgba(26, 32, 44, 0.04);
    --light-gray: #eae5de;

    /* Custom Theme Overrides */
    --hero-overlay: linear-gradient(to right, rgba(250, 248, 245, 0.92) 30%, rgba(250, 248, 245, 0.35) 100%);
    --header-scrolled-bg: rgba(250, 248, 245, 0.96);
    --text-on-gold: #ffffff;
}

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

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-hover);
}

/* 
==================================================================
   REUSABLE UTILITIES & LAYOUT
==================================================================
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background-color: var(--light-gray);
    color: var(--text-dark);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--text-dark);
}

.section-light .section-subtitle {
    color: var(--primary-gold);
}

.section-light .section-desc {
    color: var(--text-dark-muted);
}

.text-gold {
    color: var(--primary-gold) !important;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-on-gold);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline {
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--text-on-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

.btn-light-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-light-outline:hover {
    background-color: var(--white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Animations Trigger Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 
==================================================================
   NAVIGATION BAR
==================================================================
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(250, 248, 245, 0.82);
    /* Frosted light cream */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.05);
}

.header:not(.scrolled) {
    padding: 20px 0;
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer .logo-img {
    height: 100px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), #8e7239);
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-dark);
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    color: var(--white);
}

.logo-text span:last-child {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

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

.nav-link.active {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Nav Action Button */
.nav-cta {
    display: block;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

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

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

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

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-dark-light);
    border-left: 1px solid var(--border-light);
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-drawer .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.mobile-menu-drawer .nav-link {
    font-size: 1.2rem;
}

/* 
==================================================================
   HERO BANNER
==================================================================
*/
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s, transform 6s linear;
    display: flex;
    align-items: center;
    transform: scale(1);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1.05);
    /* Ken Burns scale zoom effect */
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* Removed shadow/overlay as requested */
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 8px 20px rgba(179, 138, 62, 0.3);
}

.slider-arrow [data-lucide] {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(179, 138, 62, 0.5);
}

@media (max-width: 768px) {
    .slider-controls {
        display: none;
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.hero-title span {
    background: linear-gradient(135deg, var(--white) 60%, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 40px;
}

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

/* Scroll Down Prompt */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--primary-gold);
    animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
    0% {
        top: -15px;
    }

    100% {
        top: 50px;
    }
}

/* 
==================================================================
   STATS MODULE
==================================================================
*/
.stats-bar {
    background-color: var(--bg-dark-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--border-light);
}

.stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* 
==================================================================
   FEATURED / PROJECTS GRID SECTION
==================================================================
*/
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--text-on-gold);
}

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

/* Project Card */
.project-card {
    background-color: var(--bg-dark-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-premium);
}

.project-image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image-box img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(15, 19, 25, 0.85);
    backdrop-filter: blur(8px);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.project-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-gold);
    color: var(--text-on-gold);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.project-status-badge.completed {
    background-color: #10b981;
    color: var(--white);
}

.project-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.project-card:hover .project-title {
    color: var(--primary-gold);
}

.project-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.5;
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: auto;
    margin-bottom: 24px;
    gap: 12px;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-val {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

.spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.project-btn-box {
    margin-top: auto;
}

.project-btn-box .btn {
    width: 100%;
}

/* 
==================================================================
   ABOUT GRID (STORY / HIGHLIGHTS)
==================================================================
*/
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-gold);
    margin: 20px;
    pointer-events: none;
    border-radius: var(--radius-md);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-gold-light);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.about-feature-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 
==================================================================
   TESTIMONIALS SECTION
==================================================================
*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark-light);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-gold);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 5rem;
    color: rgba(197, 160, 89, 0.08);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 
==================================================================
   CTA BANNER SECTION
==================================================================
*/
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark-light);
    opacity: 0.8;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(1.05) opacity(0.18);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text {
    max-width: 650px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

.cta-action {
    flex-shrink: 0;
}

/* 
==================================================================
   PAGE HEADER (FOR INNER PAGES)
==================================================================
*/
.page-header {
    padding: 160px 0 80px;
    background-color: var(--bg-dark-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.08), transparent 50%);
    pointer-events: none;
}

.page-header-content {
    text-align: center;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs span {
    color: var(--primary-gold);
}

/* 
==================================================================
   ABOUT PAGE DETAILS
==================================================================
*/
.about-stats {
    background-color: var(--bg-dark-light);
    padding: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vision-card {
    background-color: var(--bg-dark-card);
    padding: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-gold);
}

.vision-icon {
    margin-bottom: 24px;
}

.vision-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-gold);
}

.vision-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.vision-desc {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
}

/* 
==================================================================
   CONTACT PAGE DETAILS
==================================================================
*/
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-info-desc {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.contact-detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-val {
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
}

/* Form Styles */
.contact-form-box {
    background-color: var(--bg-dark-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.form-group-full {
    grid-column: span 2;
}

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

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

textarea.form-input {
    resize: none;
    min-height: 120px;
}

/* Custom Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-dark-light);
    border-radius: var(--radius-sm);
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.form-checkbox input:checked+.checkmark {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-checkbox input:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--text-on-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Success / Alert State overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    fill: #10b981;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.faq-icon::before {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
    /* arbitrary height to slide down */
}

/* Map Section */
.map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-top: 80px;
    position: relative;
}

.map-placeholder-bg {
    position: absolute;
    inset: 0;
    background-color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 40px;
}

.map-placeholder-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-gold);
}

.map-placeholder-title {
    font-size: 1.4rem;
}

.map-placeholder-desc {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 400px;
}

/* 
==================================================================
   PROJECT DETAILS PAGE TEMPLATE CSS
==================================================================
*/
.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.project-details-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-gallery-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    aspect-ratio: 16 / 9;
}

.project-gallery-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.details-tab-content p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.amenity-item {
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.amenity-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-gold);
}

.amenity-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-light);
}

.specs-table td {
    padding: 16px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--white);
    width: 35%;
}

.specs-table td:last-child {
    color: var(--text-muted);
    font-weight: 300;
}

/* Sidebar Inquiry Box */
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.sidebar-box-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.sidebar-agent {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.agent-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-info h4 {
    font-size: 1rem;
}

.agent-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.sidebar-link-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: var(--primary-gold-light);
}

.sidebar-link-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* 
==================================================================
   FOOTER
==================================================================
*/
.footer {
    background-color: #1a202c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 30px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-about-text {
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: #a0aec0;
}

.social-icon:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: var(--primary-gold-light);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f7fafc;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.newsletter-text {
    font-weight: 300;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 8px;
}

.newsletter-input {
    flex-grow: 1;
    color: #f7fafc;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    cursor: pointer;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    color: var(--primary-gold-hover);
    transform: translateX(4px);
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* 
==================================================================
   RESPONSIVE DESIGN BREAKPOINTS
==================================================================
*/
@media (max-width: 1024px) {

    .projects-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-split,
    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-sidebar {
        order: 0;
        /* Flow naturally below project details instead of jumping to the top */
    }

    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet for vision cards */
    }

    .vision-card {
        padding: 30px;
        /* Reduced card padding on tablet */
    }
}

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

    .hero {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .hero-slides {
        position: relative;
        width: 100%;
        height: 56.25vw;
        min-height: 220px;
    }

    .hero-slide {
        background-size: contain;
    }

    .hero-slide.active {
        transform: none !important;
        /* Disable scale zoom on mobile for uncropped view */
    }

    .hero-corner-widget {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 20px 16px -10px;
        max-width: none;
        box-shadow: var(--shadow-card);
    }

    .hero-corner-widget .widget-link {
        display: none;
        /* Hide Explore Township link on mobile responsive view */
    }

    .slider-dots {
        position: absolute;
        top: calc(56.25vw - 25px);
        bottom: auto;
    }

    .header .nav-menu {
        display: none;
        /* Hide desktop header links to avoid overlap with logo */
    }

    .logo-img {
        height: 65px;
        /* Optimize header logo height on mobile - slightly larger */
    }

    .header {
        padding: 10px 0;
        /* Keep header height compact */
    }

    .header.scrolled {
        padding: 8px 0;
    }

    .scroll-down {
        display: none;
        /* Remove scroll prompt to clear up overlaps */
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Force all 4 stats on a single line */
        gap: 12px;
    }

    .stats-grid .stat-item {
        padding: 10px 4px !important;
        /* Override vertical and horizontal paddings on mobile */
    }

    .stat-num {
        font-size: 1.5rem;
        /* Resize figures so they fit horizontally */
    }

    .stat-label {
        font-size: 0.65rem;
        /* Resize labels */
        line-height: 1.2;
    }

    .stat-item::after {
        display: none !important;
        /* Hide separating vertical borders on mobile */
    }

    .about-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-card {
        padding: 24px;
        /* Clean card padding on mobile */
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-action {
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .contact-form-box {
        padding: 24px;
        /* Prevent form layout from being squished */
    }

    .faq-question {
        font-size: 1rem;
    }

    .compliance-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Balanced 2 columns */
        gap: 20px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .amenity-item {
        padding: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .slider-dots {
        top: calc(56.25vw - 20px);
    }

    .hero-corner-widget {
        padding: 12px 16px;
    }
}

@media (max-width: 485px) {
    .stats-grid {
        gap: 6px;
        /* Even tighter spacing on extra small screens */
    }

    .stat-num {
        font-size: 1.25rem;
        /* Scale down text sizing on extra small screens */
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        /* Stack JDA/RERA compliance items */
        gap: 16px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .legal-content .highlight-box,
    .legal-content .warning-box {
        padding: 16px 20px;
    }
}

/* Hide scrollbar for horizontal gallery tabs */
.gallery-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
    display: none;
}

/* 
==================================================================
   MODERN ICON STYLING & INTERACTIONS (LUCIDE OVERRIDES)
==================================================================
*/
/* Global Lucide Icon overrides */
[data-lucide] {
    stroke-width: 1.75px;
    stroke: var(--primary-gold);
    fill: none;
    transition: var(--transition-smooth);
    display: inline-block;
    vertical-align: middle;
}

/* Size overrides to match existing design layouts */
.about-feature-icon [data-lucide] {
    width: 22px;
    height: 22px;
}

.vision-icon [data-lucide] {
    width: 48px;
    height: 48px;
    stroke-width: 1.5px;
}

.contact-detail-icon [data-lucide] {
    width: 20px;
    height: 20px;
}

.amenity-icon [data-lucide] {
    width: 22px;
    height: 22px;
}

.social-icon [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.footer-contact-item [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.sidebar-link-btn [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
}

.success-icon [data-lucide] {
    width: 36px;
    height: 36px;
    stroke: #10b981;
}

.breadcrumbs [data-lucide] {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
}

/* Premium Glassmorphism & Hover Micro-Interactions */
.about-feature-icon,
.contact-detail-icon,
.amenity-icon {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-gold);
    background-color: var(--primary-gold-light);
}

/* Feature Item Hover Animation */
.about-feature-item {
    cursor: pointer;
}

.about-feature-item:hover .about-feature-icon {
    transform: translateY(-4px) scale(1.05);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(179, 138, 62, 0.25);
}

.about-feature-item:hover .about-feature-icon [data-lucide] {
    stroke: #ffffff;
    transform: scale(1.1);
}

/* Vision Card Hover Animation */
.vision-card {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.vision-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-premium);
}

.vision-card:hover .vision-icon [data-lucide] {
    transform: scale(1.1) rotate(6deg);
    stroke: var(--primary-gold-hover);
}

/* Amenity Item Hover Animation */
.amenity-item {
    cursor: pointer;
}

.amenity-item:hover .amenity-icon {
    transform: translateY(-2px) scale(1.05);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(179, 138, 62, 0.3);
}

.amenity-item:hover .amenity-icon [data-lucide] {
    stroke: #ffffff;
    transform: scale(1.1);
}

/* Contact Detail Item Hover Animation */
.contact-detail-item {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .contact-detail-icon {
    transform: translateY(-3px) scale(1.05);
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(179, 138, 62, 0.3);
}

.contact-detail-item:hover .contact-detail-icon [data-lucide] {
    stroke: #ffffff;
}

/* Sidebar Link Button Hover */
.sidebar-link-btn {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.sidebar-link-btn:hover {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold-light);
    color: var(--primary-gold);
    transform: translateX(4px);
}

.sidebar-link-btn:hover [data-lucide] {
    transform: scale(1.1);
}

/* Testimonial Stars styling */
.testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: var(--primary-gold);
    fill: var(--primary-gold);
}

/* Testimonial Marquee Styles */
.testimonials-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.testimonials-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.testimonials-marquee-track .testimonial-card {
    width: 380px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .testimonials-marquee-track .testimonial-card {
        width: 300px;
        padding: 24px;
    }
}

/* ================================================================== 
   PREMIUM PROJECT GALLERY & LIGHTBOX
================================================================== */
.gallery-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    overflow-x: auto;
}

.gallery-tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.gallery-tab-btn:hover {
    color: var(--primary-gold);
    background-color: var(--primary-gold-light);
}

.gallery-tab-btn.active {
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    font-weight: 600;
}

.gallery-contents {
    position: relative;
    min-height: 200px;
}

.gallery-pane {
    display: none;
}

.gallery-pane.active {
    display: block;
    animation: scaleZoom 0.4s ease forwards;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    cursor: pointer;
    background-color: var(--bg-dark-light);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Map Section Styles */
.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-dark-light);
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover .map-img {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-content-box {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: scaleZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
    margin-top: 16px;
    color: #eae5de;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
}

/* ==================================================================
   SCROLL REVEAL SYSTEM
================================================================== */
.reveal.fade,
.reveal.up,
.reveal.right,
.reveal.left {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.up {
    transform: translateY(40px);
}

.reveal.right {
    transform: translateX(-40px);
}

.reveal.left {
    transform: translateX(40px);
}

.reveal.fade.active,
.reveal.up.active,
.reveal.right.active,
.reveal.left.active {
    opacity: 1;
    transform: translate(0);
}

/* ==================================================================
   FLOATING ACTION PANEL
================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(26, 32, 44, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(179, 138, 62, 0.35);
}

.floating-btn.whatsapp {
    background-color: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.floating-btn.whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.floating-btn [data-lucide] {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2px;
    fill: none;
}

.floating-btn .tooltip-text {
    position: absolute;
    right: 65px;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.floating-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ==================================================================
   FEATURED CORNER WIDGET FOR HERO
================================================================== */
.hero-corner-widget {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    background-color: rgba(250, 248, 245, 0.85);
    /* Frosted light cream matching theme */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    max-width: 320px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.hero-corner-widget:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    background-color: rgba(250, 248, 245, 0.95);
}

.widget-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: inline-block;
}

.widget-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.widget-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.widget-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.widget-link:hover {
    color: var(--primary-gold-hover);
    transform: translateX(3px);
}

/* ==================================================================
   COMPLIANCE TRUST BADGES BAR
================================================================== */
.compliance-bar {
    background-color: var(--bg-dark-card);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.compliance-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compliance-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.compliance-icon [data-lucide] {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2px;
}

.compliance-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* ==================================================================
   EXPANDABLE COMPLIANCE DRAWERS (RERA/JDA)
================================================================== */
.compliance-drawer {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background-color: var(--bg-dark-card);
    margin-top: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.compliance-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background-color: var(--bg-dark-light);
    transition: var(--transition-fast);
}

.compliance-drawer-header:hover {
    background-color: var(--primary-gold-light);
}

.compliance-drawer-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.compliance-drawer-title [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: var(--primary-gold);
}

.compliance-drawer-arrow {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.compliance-drawer.active .compliance-drawer-arrow {
    transform: rotate(180deg);
}

.compliance-drawer-content {
    display: none;
    padding: 20px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.compliance-drawer.active .compliance-drawer-content {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specs Table Icon Styling */
.table-icon-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-right: 10px;
    vertical-align: middle;
}

.table-icon-item [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2px;
}

/* Lightbox Toolbar & Image Wrapper */
.lightbox-toolbar {
    position: absolute;
    top: 24px;
    left: 32px;
    display: flex;
    gap: 12px;
    z-index: 10000;
}

.lightbox-tool-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
}

.lightbox-tool-btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

.lightbox-tool-btn [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2px;
}

.lightbox-img-wrapper {
    overflow: visible;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}