/* 
  Property Galaxy - Day Mode Theme
  Inspired by the uploaded design but optimized for a clean, light aesthetic.
*/

html {
    font-size: 95%;
}

:root {
    /* Colors - Day Mode */
    --primary: #0a192f;
    --primary-light: #112240;
    --accent: #00d1ff; /* Cyan */
    --accent-purple: #9d50bb;
    --text-main: #1e1e1e;
    --text-muted: #555555;
    --bg-light: #ffffff;
    --bg-alt: #f1f4f9;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #003366 0%, #00d1ff 50%, #9d50bb 100%);
    --grad-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-gradient {
    background: linear-gradient(135deg, #0a192f 0%, #007cf0 50%, #6a11cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    gap: 10px;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 209, 255, 0.4);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--primary);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-btns {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--primary);
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: var(--accent);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 35px;
}

nav ul li a {
    font-weight: 500;
    color: var(--primary);
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 150px;
    background: transparent;
    text-align: center;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    filter: saturate(1.2) brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 209, 255, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.25rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 45px;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-visual {
    margin-top: 60px;
    position: relative;
}

.floating-3d {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Metrics */
/* Metrics Section Improvement */
.metrics-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(0, 209, 255, 0.03), transparent),
                radial-gradient(circle at bottom left, rgba(0, 209, 255, 0.03), transparent);
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: white;
    box-shadow: 0 30px 70px rgba(0, 209, 255, 0.1);
    border-color: rgba(0, 209, 255, 0.3);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 209, 255, 0.1);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    background: var(--accent);
    color: white;
    transform: rotateY(360deg);
}

.metric-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #111827 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card p {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

/* Featured Properties */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.prop-card {
    background: #ffffff !important;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #111827;
    position: relative;
}

.prop-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.prop-img {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.prop-img img.active {
    opacity: 1;
}

.prop-content {
    padding: 25px;
}

.prop-price, .prop-price > div {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d1ff 0%, #0072ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
    margin-bottom: 8px;
}

.prop-price span, .prop-price > div > span {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #64748b !important;
    color: #64748b !important;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
}

.prop-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827 !important;
}

.prop-loc {
    color: #64748b !important;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prop-details-capsules {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.detail-capsule {
    background: #f8fafc !important;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569 !important;
    border: 1px solid #f1f5f9;
    white-space: nowrap;
    flex-shrink: 0;
}

.prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.agent-text h5 {
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

.agent-text p {
    font-size: 0.75rem;
    margin: 0;
    color: #6b7280;
}

/* Property Grid Layouts */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for Home Page */
    gap: 30px;
    width: 100%;
}

/* 2 columns for Buy/Rent pages where sidebar is present */
.search-results-layout .property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Sizing overrides to make search cards extremely premium and spacious in 2 columns */
.search-results-layout .property-grid:not(.list-view) .prop-img {
    height: 260px;
}

.search-results-layout .property-grid:not(.list-view) .prop-content {
    padding: 20px;
}

.search-results-layout .property-grid:not(.list-view) .prop-price, 
.search-results-layout .property-grid:not(.list-view) .prop-price > div {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.search-results-layout .property-grid:not(.list-view) .prop-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a192f !important;
    line-height: 1.25;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-results-layout .property-grid:not(.list-view) .prop-loc {
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.search-results-layout .property-grid:not(.list-view) .prop-details-capsules {
    gap: 4px;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.search-results-layout .property-grid:not(.list-view) .detail-capsule {
    padding: 3px 6px;
    font-size: 0.72rem;
    gap: 4px;
}

.search-results-layout .property-grid:not(.list-view) .agent-img {
    width: 34px;
    height: 34px;
}

.search-results-layout .property-grid:not(.list-view) .agent-text h5 {
    font-size: 0.8rem;
    font-weight: 700;
}

.search-results-layout .property-grid:not(.list-view) .agent-text p {
    font-size: 0.7rem;
}

.search-results-layout .property-grid:not(.list-view) .btn-details {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0 !important; /* Hides "View Details" text */
    background: transparent !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #111827 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.search-results-layout .property-grid:not(.list-view) .btn-details::after {
    content: '\2197' !important; /* 120-degree up-right diagonal arrow (↗) */
    display: inline-block;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-left: 0 !important;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-results-layout .property-grid:not(.list-view) .btn-details:hover {
    background: #111827 !important;
    color: white !important;
    border-color: #111827 !important;
    transform: scale(1.05);
}

.search-results-layout .property-grid:not(.list-view) .btn-details:hover::after {
    transform: translate(1px, -1px) scale(1.1);
}

/* List View Styles */
.property-grid.list-view {
    grid-template-columns: 1fr !important;
}

.property-grid.list-view .prop-card {
    display: flex;
    flex-direction: row;
    height: 290px;
}

.property-grid.list-view .prop-img {
    width: 380px;
    height: 100%;
    min-width: 380px;
    border-radius: 24px 0 0 24px;
}

.property-grid.list-view .prop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px !important;
}

.property-grid.list-view .prop-footer {
    margin-top: auto;
}

/* View Switcher UI */
.view-switcher {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
}

.view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: white;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .search-results-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .search-results-layout .property-grid {
        grid-template-columns: 1fr !important;
    }
    .property-grid {
        grid-template-columns: 1fr;
    }
    .property-grid.list-view .prop-card {
        flex-direction: column;
        height: auto;
    }
    .property-grid.list-view .prop-img {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }
}

/* Dark Rental Card Style */
.rent-card-dark {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 1px solid #f1f5f9 !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #111827 !important;
}

.rent-card-dark .prop-content {
    padding: 25px !important;
}

.rent-card-dark .prop-price, .rent-card-dark .prop-price > div {
    background: linear-gradient(135deg, #00d1ff 0%, #0072ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    display: inline-block;
}

.rent-card-dark .prop-price span, .rent-card-dark .prop-price > div > span {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #64748b !important;
    color: #64748b !important;
    font-size: 0.85rem;
    font-weight: 400;
    display: inline-block;
}

.rent-card-dark .prop-title {
    color: #111827 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.rent-card-dark .prop-loc {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.amenity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.dark-capsule {
    background: #f8fafc !important;
    color: #475569 !important;
    padding: 10px 15px !important;
    border-radius: 12px !important;
    font-size: 0.82rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #f1f5f9 !important;
}

.icon-only-amenity {
    color: var(--accent) !important;
    font-size: 1.1rem !important;
    margin-left: 5px;
}

.rent-card-dark .prop-footer {
    margin-top: auto;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 20px !important;
}

.rent-card-dark .agent-text h5 {
    color: #111827 !important;
}

.btn-details {
    background: transparent !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #111827 !important;
    padding: 10px 22px !important;
    border-radius: 14px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.btn-details:hover {
    background: #111827 !important;
    color: white !important;
    border-color: #111827 !important;
}

/* Amenity Animations & Status */
.bolt-active {
    color: #ffcc00 !important;
    -webkit-text-fill-color: #ffcc00 !important;
    font-size: 1.1rem !important;
    animation: slow-blink 3s infinite ease-in-out;
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.4));
}

@keyframes slow-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.wifi-active {
    color: #00d1ff !important;
    -webkit-text-fill-color: #00d1ff !important;
    font-size: 1.1rem !important;
    animation: wifi-pulse 2s infinite ease-in-out;
}

@keyframes wifi-pulse {
    0% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 0px #00d1ff); }
    50% { transform: scale(1.1); opacity: 0.8; filter: drop-shadow(0 0 10px #00d1ff); }
    100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 0px #00d1ff); }
}

.not-included {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1.5px solid #94a3b8;
    border-radius: 50%;
    color: #94a3b8 !important;
    font-size: 0.65rem !important;
}

.not-included::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: #94a3b8;
    transform: rotate(-45deg);
}

.not-included i {
    color: inherit !important;
    -webkit-text-fill-color: #94a3b8 !important;
}

.prop-actions-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.action-tag {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-tag:hover {
    background: white;
    color: #111827;
    transform: scale(1.1);
}

.negotiable-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: #0369a1;
    background: #f0f9ff;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid #bae6fd;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.prop-type-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.prop-details {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Locations */
.locations-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
}

.locations-grid::-webkit-scrollbar {
    display: none;
}

.location-card {
    height: 320px;
    min-width: 300px;
    width: 300px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.location-card:hover img {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 22px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: white;
}

.location-overlay h3 {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.location-overlay p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
/* Premium Footer Styles */
footer {
    background: #0d121d;
    color: #94a3b8;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
    font-size: 0.8rem;
}

.contact-info i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--grad-primary);
    border-radius: 10px;
}
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .property-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .property-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    nav { display: none; }
}

/* ==========================================
   PREMIUM TOAST & ACTION BUTTON SYSTEMS
   ========================================== */

/* Toast Container style */
.galaxy-toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 28px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    opacity: 0;
}

.galaxy-toast-container.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.galaxy-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
}

.galaxy-toast-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.galaxy-toast-icon.info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* Gallery-specific Action Overrides */
.main-img-container .prop-actions-tags {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 12px;
    z-index: 15;
}

.main-img-container .action-tag {
    width: 48px;
    height: 48px;
    background: white;
    color: #1e293b;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.15rem;
}

.main-img-container .action-tag:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 209, 255, 0.25);
    border-color: transparent;
}

/* Saved Heart State */
.action-tag.saved {
    background: #ef4444 !important;
    color: white !important;
    border-color: #ef4444 !important;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3) !important;
}

.action-tag.saved:hover {
    background: #dc2626 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4) !important;
}

/* Heartbeat animation */
@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.35); }
    28% { transform: scale(1); }
    42% { transform: scale(1.35); }
    70% { transform: scale(1); }
}

.action-tag.saved i {
    animation: heartBeat 0.8s ease-in-out;
}

/* Card Call & WhatsApp buttons style */
.btn-card-call:hover {
    background: #0369a1 !important;
    color: white !important;
    border-color: #0369a1 !important;
    transform: scale(1.08);
}
.btn-card-whatsapp:hover {
    background: #15803d !important;
    color: white !important;
    border-color: #15803d !important;
    transform: scale(1.08);
}

/* ==========================================
   AUTHENTICATION MODAL STYLES
   ========================================== */
#pg-auth-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    font-family: 'Inter', sans-serif;
}
.pg-modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 90%;
    max-width: 440px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: pgModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-sizing: border-box;
}
@keyframes pgModalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.pg-modal-close-btn {
    position: absolute;
    top: 16px; right: 18px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.pg-modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.pg-modal-tabs {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 24px;
    gap: 16px;
}
.pg-modal-tab {
    flex: 1;
    text-align: center;
    padding: 10px 0 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748b;
    position: relative;
    transition: all 0.2s;
}
.pg-modal-tab:hover {
    color: #0f172a;
}
.pg-modal-tab.active {
    color: #0066ff;
}
.pg-modal-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066ff;
}
.pg-input-group {
    margin-bottom: 16px;
    text-align: left;
}
.pg-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}
.pg-input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
}
.pg-input-group input:focus {
    border-color: #0066ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.pg-form-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #003366 0%, #0066ff 50%, #9d50bb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    font-family: 'Outfit', sans-serif;
}
.pg-form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.3);
}
.pg-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 700;
}
.pg-modal-divider::before, .pg-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #f1f5f9;
}
.pg-modal-divider:not(:empty)::before { margin-right: .5em; }
.pg-modal-divider:not(:empty)::after { margin-left: .5em; }

.pg-social-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    transition: all 0.2s;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
.pg-google-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
}
.pg-google-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}
.pg-google-btn img {
    width: 18px;
    height: 18px;
}
.pg-form-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: left;
    display: none;
}

/* Space Footer Overrides for smaller text globally */
.space-footer .logo {
    font-size: 1.15rem !important;
}
.space-footer .footer-brand p {
    font-size: 0.75rem !important;
}
.space-footer .contact-info {
    font-size: 0.75rem !important;
}
.space-footer .footer-bottom {
    font-size: 0.75rem !important;
}

/* Mobile view style override for header Log In button & premium layout components */
.mobile-menu-toggle, .mobile-user-toggle {
    display: none;
}
.mobile-bottom-nav {
    display: none;
}
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #ffffff;
    z-index: 100000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-100%);
    box-sizing: border-box;
}
.mobile-drawer.open {
    transform: translateX(0);
}
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-drawer-close {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.mobile-drawer-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.mobile-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-drawer-auth-section {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.mobile-drawer-auth-section p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.mobile-drawer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: background 0.2s;
}
.mobile-drawer-menu li a:hover {
    background: #f8fafc;
    color: var(--accent);
}
.mobile-drawer-menu li a i {
    width: 20px;
    font-size: 1rem;
    color: var(--accent);
}
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.open {
    opacity: 1;
}

.desktop-details-layout {
    display: block;
}
.mobile-details-layout {
    display: none;
}

@media (max-width: 768px) {
    .pg-login-btn-text {
        display: none !important;
    }
    .pg-header-login-btn {
        padding: 10px 14px !important;
    }
    header .container {
        display: grid !important;
        grid-template-columns: 40px 1fr 40px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 16px !important;
    }
    header .logo {
        justify-self: center !important;
        margin: 0 !important;
    }
    header nav, header .header-actions, header .auth-btns {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        color: var(--primary);
        cursor: pointer;
        justify-self: start !important;
        width: 32px;
        height: 32px;
    }
    .mobile-user-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        color: var(--primary);
        cursor: pointer;
        justify-self: end !important;
        width: 32px;
        height: 32px;
    }
    .mobile-bottom-nav {
        display: none !important;
    }
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #94a3b8;
        font-size: 0.7rem;
        font-weight: 700;
        text-decoration: none;
        width: 60px;
        transition: color 0.2s;
    }
    .mobile-bottom-nav .nav-item i {
        font-size: 1.15rem;
    }
    .mobile-bottom-nav .nav-item.active {
        color: var(--accent) !important;
    }
    body {
        padding-bottom: 0px !important;
    }
    .container {
        padding: 0 16px !important;
    }
    .view-switcher {
        display: none !important;
    }

    /* Mobile details page responsive styles (Property Finder flat style) */
    body.details-page {
        padding-bottom: 80px !important;
        background-color: #ffffff !important;
    }
    .details-page .breadcrumb {
        display: none !important;
    }
    .details-page .details-main-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .details-page .details-sidebar {
        margin-top: 0 !important;
    }
    .details-page .sidebar-card,
    .details-page .property-header-card,
    .details-page #property-video-tour,
    .details-page .info-table-card {
        padding: 24px 0 !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .details-page .gallery-wrapper {
        padding: 0 !important;
        margin: 0 -16px 20px -16px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        width: calc(100% + 32px) !important;
        max-width: none !important;
    }
    .details-page .main-img-container {
        height: 280px !important;
        border-radius: 0 !important;
    }
    .details-page .main-img-container img {
        border-radius: 0 !important;
    }
    .details-page .img-thumbnails {
        display: none !important;
    }
    
    .details-page .details-price-row {
        padding: 12px 0 !important;
        border-radius: 0 !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .details-page .details-price-row .header-price h2 {
        font-size: 1.5rem !important;
    }
    .details-page .details-price-row div:last-child {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
    .details-page .details-price-row div:last-child div {
        font-size: 0.8rem !important;
        gap: 6px !important;
    }
    .details-page .details-price-row div:last-child div i {
        font-size: 1rem !important;
    }
    
    .details-page .core-specs {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
        padding: 16px 0 !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        border: none !important;
        border-top: 1px solid #f1f5f9 !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .details-page .spec-item {
        padding: 4px !important;
        gap: 4px !important;
        border-right: 1px solid #f1f5f9 !important;
    }
    .details-page .spec-item:last-child {
        border-right: none !important;
    }
    .details-page .spec-icon-box {
        width: 34px !important;
        height: 34px !important;
        border-radius: 8px !important;
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    .details-page .spec-value {
        font-size: 1rem !important;
    }
    .details-page .spec-label {
        font-size: 0.55rem !important;
    }
    .details-page .info-table-card {
        padding: 20px 16px !important;
        border-radius: 20px !important;
    }
    .details-page .info-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .details-page .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .details-page #features > div, 
    .details-page #amenities > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .details-page .sidebar-btns {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin: 20px 0 0 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        position: static !important;
    }
    .details-page .sidebar-btns .btn-sidebar {
        width: 100% !important;
        height: 48px !important;
        border-radius: 12px !important;
        margin: 0 !important;
        display: flex !important;
    }
    .details-page .sidebar-btns .btn-outline {
        display: flex !important;
    }
    .details-page-content {
        padding-top: 70px !important;
    }
    
    /* Hide footer on mobile browser */
    footer {
        display: none !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .footer-bottom-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 15px !important;
    }
    .footer-bottom-links span {
        display: none !important;
    }

    /* Mobile footer centering styles when footer is displayed */
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 35px !important;
    }
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .footer-brand p {
        text-align: center !important;
        margin: 15px auto !important;
        max-width: 320px !important;
    }
    .footer-brand .social-links {
        justify-content: center !important;
        margin-top: 5px !important;
    }
    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .footer-col h4 {
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-col ul {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .footer-col ul li {
        margin-bottom: 0 !important;
    }
    .footer-col ul li a:hover {
        transform: scale(1.05) !important;
    }
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .contact-info li {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
        margin-bottom: 0 !important;
    }

    /* Prevent horizontal page overflow globally on mobile */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix tab-headers horizontal overflow on mobile details pages */
    .details-page .tab-headers {
        display: flex !important;
        gap: 20px !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        margin-bottom: 15px !important;
        scrollbar-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .details-page .tab-headers::-webkit-scrollbar {
        display: none !important;
    }
    .details-page .tab-btn {
        flex-shrink: 0 !important;
        padding-bottom: 10px !important;
    }
    
    /* Fix price row overflow on mobile details pages */
    .details-page .details-price-row {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
    .details-page .details-price-row div:last-child {
        flex-wrap: wrap !important;
        gap: 10px 15px !important;
    }

    .desktop-details-layout {
        display: none !important;
    }
    .mobile-details-layout {
        display: block !important;
    }
    body.details-page {
        background-color: #f8fafc !important;
        padding-bottom: 80px !important;
    }
    
    /* Screen details styles from mobile.html */
    .app-details-header-gallery {
        height: 250px;
        position: relative;
        margin: 0 -16px 0 -16px;
        overflow: hidden;
    }
    .app-details-header-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .gallery-fade {
        animation: galleryFade 0.2s ease-in-out;
    }
    @keyframes galleryFade {
        from { opacity: 0.7; }
        to { opacity: 1; }
    }
    .app-details-top-navigation {
        position: absolute;
        top: 12px;
        left: 0;
        width: 100%;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 20;
    }
    .app-details-nav-circle-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: #0f172a;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .app-details-gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        color: #0f172a;
        cursor: pointer;
        z-index: 15;
        transition: all 0.2s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .app-details-gallery-nav-btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-50%) scale(1.05);
    }
    .app-details-gallery-nav-btn.prev {
        left: 12px;
    }
    .app-details-gallery-nav-btn.next {
        right: 12px;
    }
    .app-details-gallery-counter {
        position: absolute;
        bottom: 12px;
        right: 16px;
        background: rgba(15, 23, 42, 0.8);
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 10px;
        z-index: 20;
    }
    .app-details-tabs-header {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 8px 0;
        margin-top: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        background: transparent;
        scrollbar-width: none;
    }
    .app-details-tabs-header::-webkit-scrollbar {
        display: none !important;
    }
    .app-details-tab-pill {
        flex-shrink: 0;
        font-size: 0.78rem;
        font-weight: 750;
        color: #64748b;
        background: #e2e8f0;
        padding: 6px 14px;
        border-radius: 18px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .app-details-tab-pill.active {
        color: #ffffff;
        background: #007cf0;
        box-shadow: 0 2px 8px rgba(0, 124, 240, 0.3);
    }
    .app-details-content-box {
        padding: 16px 0;
    }
    .app-details-badge-row {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }
    .app-details-badge-pill {
        font-size: 0.6rem;
        font-weight: 800;
        color: white;
        background: #007cf0;
        padding: 3px 8px;
        border-radius: 4px;
        text-transform: uppercase;
    }
    .app-details-title-row {
        margin-top: 12px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }
    .app-details-title-row h2 {
        font-size: 1.25rem;
        font-weight: 800;
        color: #0a192f;
        line-height: 1.25;
        margin: 0;
    }
    .app-details-title-row p {
        font-size: 0.75rem;
        color: #64748b;
        margin: 4px 0 0 0;
    }
    .app-details-price {
        font-size: 1.25rem;
        font-weight: 850;
        color: #007cf0;
        text-align: right;
        white-space: nowrap;
    }
    .app-details-specs-strip {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        padding: 10px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.78rem;
        color: #64748b;
        font-weight: 600;
        justify-content: space-between;
    }
    .app-details-specs-strip span i {
        color: #007cf0;
        margin-right: 4px;
    }
    .app-details-overview {
        margin-top: 10px;
    }
    .app-details-overview h4 {
        font-size: 0.85rem;
        font-weight: 800;
        color: #0a192f;
        margin: 0 0 8px 0;
    }
    .app-details-overview p {
        font-size: 0.82rem;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }
    .app-details-amenities {
        margin-top: 10px;
    }
    .app-details-amenities h4 {
        font-size: 0.85rem;
        font-weight: 800;
        color: #0a192f;
        margin: 0 0 8px 0;
    }
    .app-details-amenities-mini-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .app-mini-amenity-pill {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 0.78rem;
        font-weight: 600;
        color: #0a192f;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .app-mini-amenity-pill i {
        color: #007cf0;
        font-size: 0.85rem;
    }
}

.details-page .floating-badges {
    display: none !important;
}

/* Global Video Play Button Style */
.video-play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    color: #ff0000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 15 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.video-play-btn:hover {
    transform: scale(1.1) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
}
.video-play-btn i {
    font-size: 0.9rem !important;
}



