/* =====================================================
   TIJARS.ID - Property Detail Page Styles
   ===================================================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary-teal: #1E7C8A;
    --primary-dark: #0D3B42;
    --primary-light: #2A9DAE;

    /* Accent Colors */
    --success-green: #A4D65E;
    --success-dark: #8BC34A;
    --warning-orange: #FF9800;
    --error-red: #F44336;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F0F3F5;
    --medium-gray: #E0E5E9;
    --dark-gray: #636E72;
    --text-dark: #2D3436;
    --text-muted: #95A5A6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E7C8A 0%, #2A9DAE 100%);
    --gradient-dark: linear-gradient(135deg, #0D3B42 0%, #1E7C8A 100%);
    --gradient-success: linear-gradient(135deg, #8BC34A 0%, #A4D65E 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-teal);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--light-gray);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-teal);
    letter-spacing: -0.5px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 90px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-teal);
}

/* Dropdown Menus */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-teal);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.main-content {
    padding: var(--space-2xl) 0;
}

/* Property Layout - 2 Column */
.property-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

/* =====================================================
   PROPERTY SHOWCASE (LEFT COLUMN)
   ===================================================== */
.property-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: var(--space-md);
}

.main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnail-strip {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.thumbnail {
    position: relative;
    width: 100px;
    height: 75px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-teal);
}

.thumbnail.more-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.thumbnail.more-photos:hover {
    background: var(--gradient-primary);
}

/* Property Badges */
.property-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.badge-available {
    background: var(--gradient-success);
    color: var(--white);
}

.badge-airbnb {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.badge-airbnb:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Property Header */
.property-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.property-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.property-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-lg);
    color: var(--dark-gray);
}

.property-location svg {
    color: var(--primary-teal);
}

/* Property Specs */
.property-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
}

.spec-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

/* =====================================================
   INVESTMENT SECTION (RIGHT COLUMN)
   ===================================================== */
.investment-section {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

/* Token Progress */
.token-progress {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--dark-gray);
}

.progress-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-teal);
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* Metrics Carousel */
.metrics-carousel {
    position: relative;
}

.metrics-container {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: var(--space-xs);
}

.metrics-container::-webkit-scrollbar {
    display: none;
}

.metric-card {
    flex: 0 0 auto;
    min-width: 100px;
    padding: var(--space-md);
    background: var(--light-gray);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.metric-card:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.metric-card:hover .metric-label,
.metric-card:hover .metric-period {
    color: rgba(255, 255, 255, 0.8);
}

.metric-card:hover .info-btn {
    color: var(--white);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
}

.metric-card:hover .metric-value {
    color: var(--white);
}

.metric-period {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.info-btn:hover {
    color: var(--primary-teal);
}

.info-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--primary-dark);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 400;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 10;
}

.info-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    color: var(--primary-teal);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.carousel-btn.next {
    right: -16px;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-sm);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 124, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 124, 138, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Earning Estimation */
.earning-estimation {
    padding: var(--space-lg);
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--success-green);
}

.earning-text {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

.earning-text strong {
    color: var(--primary-dark);
}

.earning-amount {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
}

.earning-amount .currency {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--success-dark);
}

.earning-amount .amount {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--success-dark);
}

/* =====================================================
   LEADERBOARD SECTION
   ===================================================== */
.leaderboard-section {
    padding: var(--space-3xl) 0;
    background: var(--light-gray);
    margin-top: var(--space-2xl);
}

.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.leaderboard-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-dark);
}

.leaderboard-title svg {
    color: var(--warning-orange);
}

.property-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
}

/* Leaderboard Table */
.leaderboard-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-dark);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-body {
    max-height: 400px;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
    align-items: center;
    transition: background var(--transition-fast);
}

.table-row:hover {
    background: var(--light-gray);
}

.table-row:last-child {
    border-bottom: none;
}

.col-rank {
    font-weight: 700;
    color: var(--primary-teal);
}

.col-user {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.user-name {
    font-weight: 500;
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--success-green);
    border-radius: var(--radius-full);
    color: var(--white);
}

.col-id {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

/* Top 3 Special Styling */
.table-row.rank-1 .col-rank {
    color: #FFD700;
    font-size: var(--font-size-lg);
}

.table-row.rank-2 .col-rank {
    color: #C0C0C0;
    font-size: var(--font-size-lg);
}

.table-row.rank-3 .col-rank {
    color: #CD7F32;
    font-size: var(--font-size-lg);
}

/* =====================================================
   TABS SECTION
   ===================================================== */
.tabs-section {
    padding: var(--space-3xl) 0;
}

.tabs-nav {
    display: flex;
    gap: var(--space-xs);
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 0 0 auto;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--dark-gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-teal);
}

.tab-btn.active {
    color: var(--primary-teal);
    border-bottom-color: var(--primary-teal);
}

.tabs-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Property Description */
.property-description h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.property-description p {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    line-height: 1.8;
}

.property-description strong {
    color: var(--primary-teal);
}

/* Map Container */
.property-location-map {
    margin-top: var(--space-2xl);
}

.property-location-map h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-logo .logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-tagline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.office-location {
    margin-bottom: var(--space-md);
}

.office-location strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.office-location p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    margin-top: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--primary-light);
    transition: color var(--transition-fast);
}

.map-link:hover {
    color: var(--success-green);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.app-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--white);
    transition: all var(--transition-fast);
}

.app-btn:hover {
    background: var(--primary-teal);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.cert-icon {
    padding: var(--space-xs) var(--space-sm);
    background: var(--white);
    color: var(--primary-dark);
    font-size: var(--font-size-xs);
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.cert-badge span {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
}

.ojk-notice {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    margin-bottom: var(--space-md);
}

.disclaimer p {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-legal p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.legal-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.legal-links a:hover {
    color: var(--white);
}

.legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */

/* Social Proof Notification */
.social-proof {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 320px;
    z-index: 999;
    animation: slideInLeft 0.5s ease, pulse 2s infinite;
    opacity: 0;
    transform: translateX(-100%);
}

.social-proof.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: var(--shadow-xl);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(30, 124, 138, 0.2), var(--shadow-xl);
    }
}

.proof-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--white);
    flex-shrink: 0;
}

.proof-content {
    flex: 1;
}

.proof-text {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.proof-text strong {
    color: var(--primary-teal);
}

.proof-property {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-dark);
}

.proof-time {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
    }

    .investment-section {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        gap: var(--space-sm);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: var(--space-lg);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .thumbnail-strip {
        flex-direction: row;
        overflow-x: auto;
    }

    .thumbnail {
        width: 80px;
        height: 60px;
    }

    .property-title {
        font-size: var(--font-size-2xl);
    }

    .property-specs {
        grid-template-columns: 1fr 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr;
    }

    .col-id {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .tabs-nav {
        gap: 0;
    }

    .tab-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

    .social-proof {
        bottom: 100px;
        left: var(--space-md);
        right: var(--space-md);
        max-width: none;
    }

    .whatsapp-float {
        bottom: 24px;
        right: var(--space-md);
        width: 56px;
        height: 56px;
    }

    .leaderboard-title {
        font-size: var(--font-size-xl);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .property-specs {
        grid-template-columns: 1fr;
    }

    .spec-item {
        padding: var(--space-sm);
        background: var(--white);
        border-radius: var(--radius-md);
    }

    .earning-amount .amount {
        font-size: var(--font-size-2xl);
    }
}