@import url("assets/css/brand-colors.css");
@import url("assets/css/mobile-responsive.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 22%),
                radial-gradient(circle at bottom right, rgba(255, 215, 130, 0.08), transparent 28%),
                var(--bg);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text);
    line-height: 1.6;
}

.site-header {
    background: rgba(9, 10, 14, 0.92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.main-nav a,
.main-nav button {
    color: var(--text);
    text-decoration: none;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    transition: all 0.25s ease;
    font-weight: 600;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
}

.main-nav a:hover,
.main-nav button:hover {
    background: rgba(212, 175, 55, 0.18);
    color: var(--text);
}

.main-nav button.active {
    background: rgba(212, 175, 55, 0.22);
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 130, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--text);
}

@media (max-width: 900px) {
    .header-container {
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .main-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.open {
        max-height: 1000px;
    }

    .main-nav a,
    .main-nav button {
        width: 100%;
        text-align: left;
    }
}

img,
video,
iframe,
embed {
    max-width: 100%;
    height: auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.site-alert-wrapper {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.site-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    font-weight: 500;
}

.site-alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.site-alert-warning {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #92400e;
}

.site-alert-error {
    background: rgba(254, 226, 226, 0.92);
    border: 1px solid rgba(248, 113, 113, 0.6);
    color: #991b1b;
}

.site-alert-info {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #1d4ed8;
}

.alert-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.alert-close:hover {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: radial-gradient(circle at top left, rgba(255, 215, 130, 0.06), transparent 24%),
                radial-gradient(circle at bottom right, rgba(84, 104, 206, 0.08), transparent 30%),
                #060809;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .section,
    .auth-container,
    .footer-content,
    .hero,
    .form,
    .property-grid,
    .auth-forms,
    .form-box {
        width: 100%;
    }

    .section,
    .auth-container,
    .footer-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .auth-features {
        grid-template-columns: 1fr;
    }
}

nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

nav button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #000000;
    transition: all 0.3s;
    font-weight: 500;
}

nav button:hover {
    background-color: rgb(80, 244, 250);
    color: #5cfff7;
    border-bottom: none;
}

nav button.active {
    background: rgb(94, 248, 248);
    color: #55f9ff;
    text-align: center;
    text-decoration-color: #e0f7ff;
    box-shadow: 0 2px 8px rgb(3, 3, 3);
}

.auth-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.login-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;

}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.register-btn {
    background: linear-gradient(135deg, var(--primary), #45f4fa);
    color: white;
    border: none;

}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(46, 245, 252);
}

.form-box {
    border: 2px solid var(--primary);
    border-radius: 5px;
    width: 100%;
    padding: 20px;
    margin-bottom: 2px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    margin-bottom: 2px;
    box-shadow: 0 2px 2px rgb(73, 235, 247);
        background: #ffffff;
    }
input, select {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #000;
    width: 100%;
    margin-bottom: 20px;
}

button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

button:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

h1 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

p {
    color: #333;
    margin-bottom: 1rem;
}

nav button:hover {
    background-color: #21dbfc;
    color: white;
    border-bottom: 2px solid white;
}

nav button.active {
    background: #25dada;
    color: white;
    box-shadow: 0 4px 12px #a1ffff;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20BA58;
    transform: scale(1.1);
}

.section {
    display: none;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section.active {
    display: block;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(12, 14, 24, 0.98), rgba(28, 22, 44, 0.98));
    border-radius: 24px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 130, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.8;
}

.property-card, .feature-card {
    background: rgba(10, 12, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: all 0.3s;
}

.property-card:hover, .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(14,165,233,0.3);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0899c7;
}

.btn-danger {
    background-color: var(--danger);
    color: white;
}

.btn-danger:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    background-color: var(--secondary);
    color: white;
}

.btn-small:hover {
    background-color: #0899c7;
}

.btn-danger-small {
    background-color: var(--danger);
    color: white;
}

.btn-danger-small:hover {
    background-color: #b91c1c;
}

.info-box {
    background-color: #e0f7ff;
    border-left: 4px solid var(--primary);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    color: var(--text-dark);
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(180deg, rgba(255, 215, 130, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 215, 130, 0.16);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    color: #f8fafc;
}

.section-header h1 {
    font-size: 3rem;
    color: #f8f3e7;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.section-header p {
    color: #d7dae0;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 820px;
}

.property-category {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.02em;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.property-info {
    display: grid;
    gap: 1rem;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.property-details {
    color: #475569;
    line-height: 1.7;
}

.property-image {
    min-height: 220px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.badge,
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.status-rent { background: #0284c7; }
.status-verified { background: #0f766e; }
.negotiable-badge { background: #f97316; }
.fixed-price-badge { background: #334155; }
.sold-badge { background: #991b1b; }
.available-badge { background: #16a34a; }

.btn-orange {
    background: #f97316;
    color: white;
}

.btn-orange:hover {
    background: #ea580c;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.6);
    z-index: 9999;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: min(100%, 680px);
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.18);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #0f172a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.close-btn:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.multi-file-upload {
    border: 2px dashed rgba(14, 165, 233, 0.6);
    border-radius: 16px;
    padding: 1.8rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(224, 247, 255, 0.6);
}

.multi-file-upload:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(255, 215, 130, 0.16);
}

.kyc-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 215, 130, 0.16);
}

.kyc-section h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.kyc-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-card ul,
.info-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li,
.info-card ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.site-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

.property-meta,
.form-note,
.property-footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.85rem;
}

.property-code {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 3px 6px;
    border-radius: 5px;
}

.btn-block {
    width: 100%;
}

.info-box-success {
    border-left-color: rgba(168, 209, 148, 0.95);
    background: rgba(168, 209, 148, 0.08);
    color: var(--text);
}

.info-box-error {
    border-left-color: rgba(225, 138, 111, 0.95);
    background: rgba(225, 138, 111, 0.12);
    color: var(--text);
}

.form-wide {
    max-width: 840px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.storage-filters,
.filter-group,
.results-header,
.empty-state,
.header-section,
.content-wrapper,
.description-section,
.units-section,
.reviews-section {
    margin-bottom: 1.75rem;
}

.filters-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.filters-grid,
.details-grid,
.features-list,
.modal-grid {
    display: grid;
    gap: 1.25rem;
}

.filters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.filter-label,
.form-label,
.detail-label {
    font-weight: 700;
    color: #d8e2ef;
    font-size: 0.95rem;
}

.filter-input,
.filter-select,
.form-input,
.form-select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
}

.filter-input:focus,
.filter-select:focus,
.form-input:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.btn-filter,
.btn-reset,
.btn-select,
.btn-top,
.btn-book,
.btn-secondary {
    width: auto;
    min-width: 160px;
}

.btn-filter,
.btn-book {
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    color: #0f172a;
}

.btn-reset,
.btn-secondary,
.btn-back {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-reset:hover,
.btn-secondary:hover,
.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.results-count,
.rating-text,
.detail-value,
.feature-text,
.review-text,
.message {
    color: rgba(255, 255, 255, 0.8);
}

.empty-state {
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(248, 250, 252, 0.7);
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.header-section,
.description-section,
.units-section,
.reviews-section,
.booking-widget,
.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.header-section {
    padding: 2rem;
}

.facility-header,
.unit-card,
.modal-grid {
    gap: 1.5rem;
}

.facility-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.facility-image {
    width: 100%;
    min-height: 320px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facility-title,
.section-title,
.widget-title {
    color: #eff6ff;
}

.facility-title {
    font-size: clamp(2rem, 2.2vw, 3rem);
    margin-bottom: 0.75rem;
}

.facility-location,
.rating-text,
.unit-category,
.unit-features,
.detail-text,
.review-text,
.message {
    color: rgba(255, 255, 255, 0.75);
}

.facility-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stars,
.review-rating {
    color: #facc15;
}

.rating-text,
.detail-value,
.unit-price,
.stat-value {
    font-weight: 700;
    color: #fff;
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 1rem;
}

.stat-value {
    font-size: 2rem;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(248,250,252,0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem;
}

.detail-icon,
.feature-icon {
    font-size: 1.75rem;
    color: #38bdf8;
}

.detail-text,
.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-label,
.unit-category,
.feature-text {
    color: rgba(248,250,252,0.75);
}

.detail-value {
    font-size: 1rem;
}

.description-section {
    padding: 2rem;
}

.description-text {
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
}

.features-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1rem;
}

.feature-text {
    margin: 0;
}

.units-section {
    padding: 2rem;
}

.units-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.unit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.unit-card.selected {
    border-color: rgba(59,130,246,0.95);
    background: rgba(59,130,246,0.12);
}

.unit-info {
    margin-bottom: 1rem;
}

.unit-category,
.unit-size,
.unit-price {
    color: #e2e8f0;
}

.unit-size,
.unit-price {
    font-weight: 700;
}

.unit-features {
    color: rgba(255,255,255,0.75);
    display: grid;
    gap: 0.45rem;
}

.btn-select {
    background: linear-gradient(135deg, #38bdf8, #06b6d4);
    color: #0f172a;
    border: none;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.btn-select:hover {
    transform: translateY(-1px);
}

.sidebar {
    position: sticky;
    top: 1.5rem;
}

.booking-widget {
    padding: 2rem;
}

.widget-title {
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.price-summary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
}

.price-row.total {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.85rem;
    font-size: 1rem;
}

.btn-book {
    width: 100%;
    margin-top: 1rem;
}

.btn-top {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    cursor: pointer;
    text-decoration: none;
}

.reviews-section {
    padding: 2rem;
}

.review-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.review-card:last-child {
    border-bottom: none;
}

.review-header {
    font-weight: 700;
    color: #fff;
}

.review-rating {
    color: #facc15;
}

.review-text {
    margin: 0;
}

.message {
    border-radius: 16px;
    display: none;
    padding: 1rem 1.25rem;
}

.message.success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #c7f9d8;
}

.message.error {
    display: block;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fee2e2;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    width: 100%;
    max-width: 740px;
    background: rgba(15, 23, 42, 0.96);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-title {
    font-size: 1.25rem;
    color: #f8fafc;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: #f8fafc;
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal-full {
    grid-column: 1 / -1;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.btn-secondary {
    padding: 0.95rem 1.2rem;
}

@media (max-width: 1024px) {
    .filters-grid,
    .facility-header,
    .content-wrapper,
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .facility-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .filters-grid,
    .facility-header,
    .content-wrapper,
    .details-grid,
    .units-grid,
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .storage-page,
    .filters-section,
    .header-section,
    .description-section,
    .units-section,
    .reviews-section,
    .booking-widget,
    .modal-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .facility-image {
        min-height: 240px;
    }

    .btn-filter,
    .btn-reset,
    .btn-select,
    .btn-book,
    .btn-top,
    .btn-view,
    .btn-back {
        width: 100%;
    }
}

/* Storage facility browse / details shared responsive styling */
.storage-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.storage-hero {
    display: grid;
    gap: 1rem;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(3, 32, 62, 0.92), rgba(11, 46, 91, 0.95));
    border: 1px solid rgba(45, 184, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: #f8fafc;
    margin-bottom: 2rem;
}

.storage-hero h1,
.storage-hero h2 {
    margin: 0;
    color: #fff;
}

.storage-hero p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 860px;
}

.storage-filters,
.facility-overview,
.unit-overview,
.booking-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    margin-bottom: 1.75rem;
}

.facilities-grid,
.units-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.facility-card,
.unit-card,
.booking-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.facility-card:hover,
.unit-card:hover,
.booking-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.18);
}

.storage-page .facility-card {
    width: 100%;
    max-width: 100%;
    min-width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    cursor: pointer;
}

.storage-page .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.storage-page .facility-image,
.unit-image {
    width: 100%;
    min-height: 170px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.storage-page .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-content {
    padding: 0.75rem 0.8rem 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 200px;
}

.facility-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.facility-location,
.facility-rating,
.facility-pricing,
.facility-meta,
.unit-meta,
.booking-meta {
    font-size: 0.82rem;
    line-height: 1.4;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.storage-page .facility-card .feature {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    font-size: 0.72rem;
    line-height: 1.25;
    min-width: 0;
}

.storage-page .price-info,
.storage-page .availability {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-label,
.available-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(248, 250, 252, 0.60);
    margin: 0;
}

.price-value,
.available-count {
    font-size: 0.95rem;
    font-weight: 700;
}

.facility-pricing {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: flex-end;
    font-size: 0.85rem;
}

.facility-card .facility-pricing:last-child {
    margin-top: 0.75rem;
}

.storage-page .facility-pricing {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.storage-page .facility-pricing > * {
    min-width: 0;
}

.facility-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.45rem 0.8rem;
    background: rgba(14, 165, 233, 0.95);
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.facility-video-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.facility-content {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.55rem;
    overflow: visible;
    min-height: auto;
}

.facility-name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: #f8fafc;
    margin: 0;
}

.facility-location {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    color: rgba(248, 250, 252, 0.70);
    font-size: 0.82rem;
    line-height: 1.2;
}

.facility-location i,
.facility-features .feature i {
    color: rgba(148, 163, 184, 0.95);
}

..storage-page .facility-card .feature {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    font-size: 0.70rem;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
}

.storage-page .facility-card .feature.climate-controlled {
    display: inline-flex;
    width: 2cm;
    height: 0.5cm;
    min-width: 2cm;
    min-height: 0.5cm;
    padding: 0 0.4rem;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .storage-page .facility-card .feature:nth-child(-n+2) {
        display: inline-flex;
    }
}

.facility-meta-row {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: rgba(248, 250, 252, 0.60);
    font-size: 0.72rem;
}

@media (min-width: 1024px) {
    .facility-meta-row {
        display: flex;
    }
}

.facility-meta-item {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.unit-listing {
    display: none;
    margin-top: 0.65rem;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .unit-listing {
        display: grid;
    }
}

.unit-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    color: rgba(248, 250, 252, 0.9);
    font-size: 0.85rem;
}

.unit-details {
    color: rgba(248, 250, 252, 0.9);
    font-size: 0.85rem;
}

.unit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.unit-price {
    color: var(--primary);
    font-weight: 800;
}

.btn-view {
    padding: 0.65rem 0.9rem;
    min-width: 110px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .storage-page .facility-card {
        grid-template-rows: 40% 1fr auto;
    }

    .facility-content {
        padding: 0.7rem;
        gap: 0.5rem;
    }
}

@media (max-width: 900px) {
    .filters-section {
        padding: 1.3rem;
    }

    .filter-actions {
        justify-content: stretch;
    }

    .facility-meta-row,
    .unit-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .storage-page .facility-card {
        grid-template-rows: auto 1fr auto;
    }

    .storage-page .facility-image,
    .unit-image {
        min-height: 170px;
    }

    .facility-content {
        padding: 0.65rem;
        gap: 0.45rem;
        min-height: 0;
    }

    .facility-name {
        font-size: 0.90rem;
    }
}

.responsive-grid-2,
.responsive-grid-3,
.responsive-grid-auto {
    display: grid;
    gap: 20px;
}

.responsive-grid-2 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.responsive-grid-3 {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.responsive-grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 840px) {
    .responsive-grid-2,
    .responsive-grid-3,
    .responsive-grid-auto {
        grid-template-columns: 1fr;
    }
}

.facility-card-body,
.unit-card-body,
.booking-content {
    padding: 1.4rem;
}

.facility-title,
.unit-title,
.section-title {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    color: #f8fafc;
}

.facility-location,
.unit-meta,
.facility-meta,
.booking-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.facility-tags,
.unit-features,
.booking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.feature-pill,
.status-pill {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: rgba(41, 128, 185, 0.95);
}

.feature-pill.secondary {
    background: rgba(15, 23, 42, 0.7);
}

.facility-price,
.unit-price {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.btn-primary,
.btn-secondary,
.btn-view,
.btn-book,
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    min-width: 160px;
    white-space: nowrap;
}

.btn-view {
    background: linear-gradient(135deg, #f59e0b, #fde68a);
    color: #111827;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.btn-book,
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #2dd4bf);
    color: #0f172a;
}

.btn-secondary,
.btn-back {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-view:hover,
.btn-book:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-back:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.booking-actions {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 1.25rem;
}

@media (max-width: 980px) {
    .storage-page {
        padding: 1.5rem 1rem 2.5rem;
    }

    .storage-hero {
        padding: 2rem 1.25rem;
    }

    .booking-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .storage-hero {
        border-radius: 18px;
        padding: 1.75rem 1.25rem;
    }

    .facility-card,
    .unit-card,
    .booking-widget {
        border-radius: 18px;
    }

    .facility-card-body,
    .unit-card-body,
    .booking-content {
        padding: 1.2rem;
    }

    .facility-price,
    .unit-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-view,
    .btn-book,
    .btn-back {
        width: 100%;
        min-width: auto;
    }
}

.form-title {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.listing-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 17, 39, 0.96), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    margin-bottom: 2rem;
}

.listing-hero .hero-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.listing-hero .info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 2rem 2.2rem;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    margin: 0 auto;
    max-width: 840px;
}

.listing-hero .info-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.listing-hero .info-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.listing-hero .info-card p {
    margin-bottom: 1rem;
}

.hero-back {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.listing-hero .eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5d48a;
    font-size: 0.85rem;
    font-weight: 700;
}

.listing-hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.85rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.listing-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
    margin: 0.5rem auto 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
}

.hero-actions {
    display: inline-flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-actions .btn {
    min-width: 150px;
}

.storage-page {
    padding: 2rem 0 3rem;
}

.storage-page .container {
    width: min(1200px, 100% - 2rem);
    margin: 0 auto;
}

.storage-page .listing-hero {
    padding: 3rem 2rem;
}

.storage-page .hero-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.filters-section {
    margin-bottom: 2rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    color: rgba(248,250,252,0.8);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #f8fafc;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.btn-filter,
.btn-view,
.btn-select,
.btn-book,
.btn-primary {
    min-width: 160px;
    flex: 1 1 180px;
}

.btn-filter,
.btn-reset {
    flex: 1 1 180px;
}

.btn-filter {
    background: linear-gradient(135deg, var(--primary), #38bdf8);
    color: #0f172a;
    border: none;
}

.btn-reset {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #f8fafc;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.results-count {
    color: rgba(248,250,252,0.8);
    font-weight: 700;
}

.storage-page .facilities-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.storage-page .facility-card {
    width: 7cm;
    max-width: 7cm;
    min-width: 7cm;
    height: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    border-radius: 24px;
    cursor: pointer;
}

.storage-page .facility-image {
    min-height: 2.2cm;
    background: rgba(255,255,255,0.04);
}

.storage-page .facility-content {
    min-height: 220px;
    padding: 1rem 1rem 1.2rem;
}

.storage-page .facility-pricing {
    align-items: flex-end;
}

.storage-page .facility-meta-row {
    margin-top: 0.5rem;
}

.storage-page .btn-view {
    min-width: 0;
}

.storage-page .facility-card .btn-book,
.storage-page .facility-card .btn-view {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.28rem 0.65rem;
        line-height: 1.2;
        min-width: auto;
        width: auto;
        white-space: nowrap;
        max-width: none;
        word-break: normal;
        border-radius: 999px;
    }

    .storage-page .facility-card .facility-actions-row {
        display: flex;
        gap: 0.35rem;
}

.storage-page .facility-content {
    padding: 0.75rem 0.8rem 0.9rem;
    gap: 0.5rem;
}

.storage-page .unit-actions {
    gap: 0.35rem;
}

/* Booking modal styles */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2,6,23,0.6);
    z-index: 1200;
    padding: 1rem;
}

.modal-content {
    width: min(720px, 100%);
    background: #0b1220;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 30px 70px rgba(2,6,23,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e6eef8;
}

.modal-content h3 { margin-top: 0; margin-bottom: .6rem; }
.modal-content label { display:block; margin-top:.5rem; font-weight:700; font-size:.9rem; }
.modal-content input[type="text"], .modal-content input[type="email"], .modal-content input[type="date"], .modal-content select, .modal-content textarea {
    width:100%; padding:.6rem; border-radius:8px; border:1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); color: #e6eef8; margin-top:.25rem;
}
.modal-close { background:transparent; border:0; color:#cbd5e1; font-size:1.4rem; float:right; cursor:pointer; }
.required { color: #fca311; }

@media (max-width:640px){
    .modal-content { padding: .9rem; }
}

@media (max-width: 900px) {
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-filter,
    .btn-reset {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .storage-page .facility-image {
        min-height: 170px;
    }

    .storage-page .facility-content {
        min-height: 0;
        padding: 0.85rem 0.9rem 1rem;
    }
}

.empty-state {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    color: #e2e8f0;
}

.empty-state i {
    color: rgba(248,250,252,0.7);
}

.property-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f8f3e7;
    margin-bottom: 0.75rem;
}

.property-price {
    font-size: 1.35rem;
    color: #f9ca4d;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.property-details {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.property-category {
    padding: 8px 14px;
    background: rgba(255, 215, 130, 0.14);
    color: #f9d876;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
}

.status-badge,
.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #f8f3e7;
}

.status-badge.sold-badge,
.badge.sold-badge {
    background: rgba(189, 83, 61, 0.15);
}

.status-badge.available-badge,
.badge.available-badge {
    background: rgba(34, 197, 94, 0.15);
}

.badge.badge-success,
.status-badge.status-verified {
    background: rgba(56, 189, 248, 0.14);
}

.info-box {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid rgba(255, 215, 130, 0.85);
    color: #d0d5db;
    padding: 1.4rem 1.4rem 1.4rem 1.35rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
}

.form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 20px;
}

.form-group label,
.form-group label strong {
    color: #e2e8f0;
}

input, select, textarea {
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255,255,255,0.10);
    color: #f8fafc;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 20px rgba(255, 215, 130, 0.18);
    border-color: rgba(255, 215, 130, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #f9dc71, #f59e0b);
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(249, 204, 113, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f8f3e7;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-orange {
    background: #f59e0b;
    color: #0f172a;
}

.btn-orange:hover {
    background: #d97706;
}

.modal-content {
    background: rgba(10, 12, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.multi-file-upload {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.4);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.multi-file-upload:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.65);
    transform: translateY(-2px);
}

.kyc-section {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(212, 175, 55, 0.8);
    border-radius: 16px;
    padding: 1.8rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 215, 130, 0.12);
}

.kyc-section h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.kyc-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.error-message {
    background: rgba(225, 138, 111, 0.12);
    border-left: 4px solid rgba(225, 138, 111, 0.95);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    color: var(--text);
    font-size: 1rem;
    text-align: center;
}

footer {
    background: linear-gradient(135deg, #0099ff 0%, #00d4ff 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 2px solid var(--primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================================
   AUTHENTICATION SECTION STYLES
   ============================================================================ */

.auth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 3rem;
}

.auth-header h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: none;
}

.auth-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.auth-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 153, 255, 0.15);
    display: none;
    animation: slideIn 0.5s ease-in-out;
}

.form-box.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-box h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-box .form-group {
    margin-bottom: 1.5rem;
}

.form-box .form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-box .form-group input,
.form-box .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-box .form-group input:focus,
.form-box .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.3);
    background-color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.3);
}

.btn-google {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: white;
    color: #333;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.btn-google:hover {
    background-color: #e0f7ff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-divider {
    text-align: center;
    color: #999;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.form-footer a:hover {
    color: #d97316;
    text-decoration: underline;
}

.security-notice {
    background-color: #e0f7ff;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.section-header h1 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    nav {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    nav button {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .auth-forms {
        grid-template-columns: 1fr;
    }

    .auth-header h1 {
        font-size: 1.8rem;
    }

    .form-box {
        padding: 1.5rem;
    }

    .auth-features {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h1 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* ========== ENHANCED MOBILE MEDIA QUERIES ========== */

/* Extra small devices (< 480px) */
@media (max-width: 479px) {
    .header-container {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .logo-link img {
        height: 35px;
    }

    .nav-toggle {
        min-height: 40px;
        padding: 0.5rem;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
        margin: 0.75rem 0;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    input, select, textarea {
        font-size: 1rem;
        padding: 0.75rem;
        min-height: 44px;
    }

    button, .btn, .auth-btn {
        min-height: 44px;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section {
        padding: 1rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .property-card, .feature-card, .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .form {
        padding: 1.25rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th, table td {
        padding: 0.5rem;
    }

    .auth-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Small devices (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .header-container {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .logo-link img {
        height: 40px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .auth-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet landscape fix */
@media (max-width: 768px) and (orientation: landscape) {
    .header-container {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .hero {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }

    button, .btn, .auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-height: 40px;
    }

    h1 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .section {
        padding: 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    button, a, input[type="button"], input[type="submit"], .auth-btn {
        min-height: 48px;
        min-width: 48px;
        padding: 0.75rem 1.25rem;
    }

    .main-nav a,
    .main-nav button {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* iPhone notch safe area */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .site-header {
        padding-top: env(safe-area-inset-top);
    }
}

/* Fix for small font sizes on iOS */
input, select, textarea {
    font-size: 1rem !important;
}

/* Prevent zoom on input focus */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input, select, textarea, button {
        font-size: 1rem;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #0d4a4a 100%);
        color: #e0e0e0;
    }

    .site-header {
        background: linear-gradient(135deg, #222 0%, #1a3a3a 100%);
    }

    button, .btn {
        color: #1a1a1a;
    }

    input, select, textarea {
        background-color: #2a2a2a;
        color: #e0e0e0;
        border-color: #444;
    }
}



