/* Future Estate - Professional Real Estate Design */

/* Override Bootstrap primary with theme color #af792f */
:root {
    --bs-primary: #af792f;
    --bs-primary-rgb: 175, 121, 47;
}

:root {
    --primary: #af792f;
    --primary-dark: #8f5f1f;
    --primary-light: #c9944a;
    --accent: #b45309;
    --light: #f8fafc;
    --light-warm: #fdf8f0;
    --dark: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 4px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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


body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.top-bar a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: white;
}

.top-bar-logo {
    text-decoration: none;
}

.top-bar-logo-img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Navbar */
.navbar.fixed-top-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
}

.navbar {
    padding: 0.25rem 0;
    background: var(--white) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.brand-text { color: var(--text); }

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text) !important;
    padding: 0.5rem 0.75rem !important;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

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

.nav-link.active {
    color: var(--primary) !important;
}

.btn-cta {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    background: var(--primary) !important;
    border: none !important;
    letter-spacing: 0.02em;
}

.btn-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(175, 121, 47, 0.25);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: var(--light);
}

/* Hero */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(160deg, #8f5f1f 0%, #6b4716 40%, #af792f 100%);
    background-image: 
        linear-gradient(135deg, rgba(107, 71, 22, 0.92) 0%, rgba(175, 121, 47, 0.88) 100%),
        url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 500;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: #fde68a;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* Hero Form */
.hero-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.04);
}

.form-card-header {
    margin-bottom: 1.75rem;
}

.form-card-header h3 {
    font-size: 1.375rem;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.form-card-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-form-card .input-group-text {
    background: var(--light);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--primary);
}

.hero-form-card .input-group .form-control {
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-form-card .input-group:focus-within .input-group-text,
.hero-form-card .input-group:focus-within .form-control {
    border-color: var(--primary);
}

.hero-form-card .form-control,
.hero-form-card .form-select,
.hero-form-card textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.hero-form-card .form-control:focus,
.hero-form-card textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(175, 121, 47, 0.12);
}

.hero-form-card .btn-primary {
    background: var(--primary) !important;
    border: none !important;
    padding: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.hero-form-card .btn-primary:hover {
    background: var(--primary-dark) !important;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    display: block;
}

/* Hero Entrance Animations */
.hero-content .hero-badge {
    animation: fadeInUp 0.8s ease-out forwards;
}
.hero-content .hero-title {
    animation: fadeInUp 0.8s ease-out 0.15s forwards;
    opacity: 0;
}
.hero-content .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}
.hero-content .hero-stats {
    animation: fadeInUp 0.8s ease-out 0.45s forwards;
    opacity: 0;
}
.hero-form-card {
    animation: fadeInUp 0.9s ease-out 0.2s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content .hero-title { transform: translateY(30px); }
.hero-content .hero-subtitle { transform: translateY(30px); }
.hero-content .hero-stats { transform: translateY(30px); }
.hero-form-card { transform: translateY(30px); }

/* Scroll Indicator Bounce */
.hero-scroll-indicator a {
    animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Button Theme - All primary buttons use theme color */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(175, 121, 47, 0.28);
}

/* Modal Entrance */
.modal-enquiry .modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Navbar Fade-in on Load */
.navbar {
    animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Enquiry Button */
.popup-trigger-btn {
    box-shadow: 0 4px 14px rgba(175, 121, 47, 0.35);
}

/* Image Hover Zoom */
.about-img-main,
.site-plan-visual img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-images:hover .about-img-main,
.site-plan-visual:hover img {
    transform: scale(1.03);
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-header-traditional .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.section-badge {
    display: inline-block;
    background: rgba(175, 121, 47, 0.08);
    color: var(--primary-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Overview Section */
.section-about {
    padding: 5rem 0;
    background: var(--light);
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.section-about .lead {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.75;
}

.section-about p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Project Specifications */
.section-specifications {
    padding: 5rem 0;
    background: white;
}

.spec-highlight-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.spec-highlight-card:hover {
    border-color: rgba(175, 121, 47, 0.3);
    box-shadow: var(--shadow-md);
}

.spec-highlight-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.spec-highlight-card h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.spec-highlight-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.spec-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: rgba(175, 121, 47, 0.25);
    box-shadow: var(--shadow-md);
}

.spec-card-title {
    font-size: 1.0625rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

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

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.spec-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.spec-table td:last-child {
    color: var(--text);
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    color: var(--text);
}

.amenity-item i {
    color: var(--primary);
}

/* Site Plan Section */
.section-site-plan {
    padding: 5rem 0;
    background: var(--light);
}

.site-plan-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.site-plan-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.site-plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.tower-badge {
    position: absolute;
    background: rgba(175, 121, 47, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.green-belt-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.site-plan-details {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
}

.site-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.site-detail-item:last-of-type {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.site-plan-legend {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.site-plan-legend h5 {
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Floor Plan Section */
.section-floor-plan {
    padding: 5rem 0;
    background: white;
}

.floor-plan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.floor-plan-card:hover {
    border-color: rgba(175, 121, 47, 0.4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.floor-plan-card.featured {
    border-color: rgba(175, 121, 47, 0.4);
    box-shadow: 0 0 0 1px rgba(175, 121, 47, 0.15);
}

.floor-plan-content {
    padding: 1.5rem;
    position: relative;
}

.floor-plan-content .floor-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.floor-plan-content .popular-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}


.txt-colo:hover{
    color: var(--primary) !important;
}
.floor-plan-content h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 1rem;
}

/* Gallery Section - Professional Slider */
.section-gallery {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-warm) 0%, var(--light) 100%);
}

.gallery-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
}

.gallery-carousel .carousel-inner {
    border-radius: var(--radius) var(--radius) 0 0;
}

.gallery-carousel .carousel-item {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--dark);
}

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

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: none;
}

.gallery-carousel .carousel-control-prev { left: 1.5rem; }
.gallery-carousel .carousel-control-next { right: 1.5rem; }

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 24px rgba(175, 121, 47, 0.4);
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.6;
}

.gallery-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: none;
    opacity: 1;
}

.gallery-indicators {
    bottom: 1.25rem;
    margin-bottom: 0;
}

.gallery-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: var(--transition);
}

.gallery-indicators button.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

.gallery-slide-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.gallery-slide-overlay .gallery-expand-btn {
    pointer-events: auto;
}

.gallery-counter {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.gallery-expand-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.gallery-expand-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.gallery-thumbnails {
    padding: 1rem 1.25rem;
    background: white;
    border-top: 1px solid var(--border);
}

.gallery-thumbs-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbs-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbs-track::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 3px;
}

.gallery-thumbs-track::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 52px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    scroll-snap-align: start;
    background: var(--light);
}

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

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

#galleryModal .modal-content {
    background: transparent !important;
}

#galleryModal .modal-dialog {
    max-width: 90vw;
}

#galleryModal img {
    max-height: 85vh;
    object-fit: contain;
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 1055;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-modal-close:hover {
    background: rgba(0,0,0,0.75);
    color: white;
}

.floor-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.floor-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.floor-specs li i {
    color: var(--primary);
    font-size: 1rem;
}

.floor-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Specifications / Service Cards */
.section-services {
    padding: 5rem 0;
    background: white;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(175, 121, 47, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 0.625rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Properties / Placeholder Sections */
.section-properties {
    padding: 5rem 0;
    background: var(--light);
}

.section-properties .bg-light {
    background: white !important;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 4rem 2rem;
}

.section-properties .bg-light i {
    color: var(--primary);
    opacity: 0.6;
}

.section-properties .card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.section-properties .card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Location Map - Times List */
.section-location-map .location-times-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.section-location-map .location-address {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.location-times-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-times-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

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

.location-times-list .location-name {
    color: var(--text);
    font-weight: 500;
}

.location-times-list .location-time {
    color: var(--primary);
    font-weight: 600;
}

.location-map-visual {
    background: linear-gradient(135deg, var(--light) 0%, rgba(175, 121, 47, 0.04) 100%);
    border-radius: var(--radius);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.location-map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 450px;
}

.location-map-embed iframe {
    display: block;
}

.location-map-visual .map-placeholder {
    text-align: center;
    padding: 2rem;
}

.location-map-visual .map-pin {
    font-size: 3rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.location-map-visual .map-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.location-map-visual .map-address {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Location Advantage Section */
.section-location-advantage {
    padding: 5rem 0;
    background: white;
}

.location-advantage-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.location-advantage-card:hover {
    border-color: rgba(175, 121, 47, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-advantage-card .advantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.location-advantage-card h4 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.location-advantage-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* RERA Section */
.section-rera {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6b4716 0%, #8f5f1f 100%);
}

.rera-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}

.rera-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.rera-card h3 i {
    color: #e8c9a0;
    margin-right: 0.5rem;
}

.rera-numbers {
    color: rgba(255,255,255,0.92);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.rera-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
}

/* CTA Section */
.section-cta {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 2.75rem;
    color: white;
    box-shadow: 0 10px 30px -10px rgba(175, 121, 47, 0.4);
}

.cta-card h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-card p {
    opacity: 0.9;
    font-size: 1rem;
}

.cta-card .btn-light {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}
.cta-card .btn-light:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

/* Contact Section */
.section-contact {
    padding: 5rem 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    border-color: rgba(175, 121, 47, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

a[href^="tel:"] {
    cursor: pointer;
}

.contact-info-card a[href^="tel:"]:hover {
    color: var(--primary) !important;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(175, 121, 47, 0.12);
}

.contact-form-card .btn-primary {
    background: var(--primary) !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Legal Sections */
.section-legal {
    padding: 4rem 0;
    background: var(--light);
}

.legal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.legal-content h4 {
    font-size: 1.0625rem;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
}

.legal-content h4:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.page-legal {
    padding-top: 120px !important;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.footer h5 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.disclaimer-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8125rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Modal - Modern Split Design */
.modal-enquiry .modal-dialog {
    max-width: 720px;
}

.modal-premium {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
    position: relative;
}

.modal-premium-inner {
    display: flex;
    min-height: 420px;
}

.modal-premium-left {
    flex: 0 0 42%;
    background: linear-gradient(165deg, #8f5f1f 0%, #6b4716 100%);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
}

.modal-premium-visual {
    color: white;
}

.modal-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.modal-headline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: white;
}

.modal-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    opacity: 0.95;
}

.modal-benefits li i {
    color: #e8c9a0;
    font-size: 1rem;
}

.modal-premium-right {
    flex: 1;
    padding: 2.5rem 2rem;
    background: white;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: rgba(0,0,0,0.1);
    color: var(--text);
}

.modal-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.modal-form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.modal-form-group .form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.modal-form-group .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(175, 121, 47, 0.15);
    outline: none;
}

.modal-form-group .form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.modal-premium .btn-submit-enquiry {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--primary) !important;
    border: none !important;
}

.modal-premium .btn-submit-enquiry:hover {
    background: var(--primary-dark) !important;
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(15, 23, 42, 0.55);
}

.modal-backdrop.show {
    backdrop-filter: blur(4px);
}

/* Utilities */
html {
    scroll-padding-top: 80px;
}

/* Responsive */
@media (max-width: 991px) {
    .top-bar { display: none; }
    .hero-banner { padding-top: 80px; }
    .hero-stats { gap: 1.5rem; }
}

@media (max-width: 768px) {
    .stat-number { font-size: 1.5rem; }
    .section-about .row { flex-direction: column-reverse; }
    .about-img-badge { right: 1rem; bottom: 1rem; }
    .site-plan-visual img { height: 280px; }
    .gallery-slider-wrapper { margin: 0 -1rem; border-radius: 0; }
    .gallery-carousel .carousel-control-prev { left: 0.75rem; }
    .gallery-carousel .carousel-control-next { right: 0.75rem; }
    .gallery-carousel .carousel-item { aspect-ratio: 4/3; }
    .gallery-thumb { width: 56px; height: 42px; }
    .amenities-grid { gap: 0.75rem; }
    .location-map-embed { min-height: 320px; }
    .location-map-embed iframe { height: 320px !important; }
    .modal-premium-inner { flex-direction: column; min-height: auto; }
    .modal-premium-left { padding: 1.75rem 1.5rem; }
    .modal-headline { font-size: 1.25rem; }
    .modal-premium-right { padding: 1.75rem 1.5rem; }
}
