/*
Theme Name: SettleStays Custom Theme
Theme URI: https://settlestays.com
Author: Do Digitals
Author URI: https://dodigitals.org
Description: Ultra-fast, custom-coded co-living & PG booking platform inspired by ZoloStays.
Version: 1.0.0
Text Domain: settlestays
*/

/* ==========================================================================
   1. LOCAL POPPINS FONTS DEFINITIONS
   ========================================================================== */

/* Poppins Thin (100) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url('assets/fonts/Poppins-Thin.woff2') format('woff2');
}

/* Poppins Light (300) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/Poppins-Light.woff2') format('woff2');
}

/* Poppins Regular (400) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/Poppins-Regular.woff2') format('woff2');
}

/* Poppins Medium (500) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/Poppins-Medium.woff2') format('woff2');
}

/* Poppins SemiBold (600) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2');
}

/* Poppins Bold (700) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/Poppins-Bold.woff2') format('woff2');
}

/* ==========================================================================
   2. GLOBAL VARIABLES & STYLES
   ========================================================================== */

:root {
    --ss-font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ss-primary: #00aeef;
    --ss-primary-dark: #008cc2;
    --ss-text-dark: #1b1b1b;
    --ss-text-muted: #6b7280;
    --ss-bg-light: #f8fafc;
    --ss-white: #ffffff;
    --ss-border: #e5e7eb;
}

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

body {
    font-family: var(--ss-font);
    font-weight: 400;
    color: var(--ss-text-dark);
    background-color: var(--ss-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ss-font);
    font-weight: 700;
    color: var(--ss-text-dark);
}

button, input, select, textarea {
    font-family: var(--ss-font);
}

a { 
    text-decoration: none; 
}

ul { 
    list-style: none; 
}
/* ==========================================================================
   EXACT ZOLOSTAYS STYLE HEADER
   ========================================================================== */

.ss-header {
    background-color: #f1fbff;
    height: 76px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.ss-header-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SettleStays Logo */
.ss-logo-area {
    display: flex;
    align-items: center;
}

.ss-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--ss-primary);
    letter-spacing: -0.5px;
    text-transform: lowercase;
    display: inline-block;
    position: relative;
    line-height: 1;
}

.ss-logo span {
    color: var(--ss-primary);
}

.ss-logo-curve {
    width: 22px;
    height: 4px;
    background: var(--ss-primary);
    border-radius: 4px;
    margin: 4px auto 0;
}

/* Right Navigation Elements */
.ss-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ss-desktop-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Highlighted Link (e.g. Settle Scholar) */
.ss-link-highlight {
    color: var(--ss-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.ss-link-highlight:hover {
    opacity: 0.85;
}

/* Secondary Link (List Your Property) */
.ss-link-item {
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.ss-link-item:hover {
    color: var(--ss-primary);
}

/* Phone and Email Contact Items */
.ss-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ss-contact-item svg {
    width: 17px;
    height: 17px;
    color: #4b5563;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.ss-contact-item:hover,
.ss-contact-item:hover svg {
    color: var(--ss-primary);
}

/* Sign In Rectangle Button */
.ss-btn-signin {
    background-color: var(--ss-primary);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.ss-btn-signin:hover {
    background-color: var(--ss-primary-dark);
}

/* Mobile Toggle */
.ss-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.ss-mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #1f2937;
    border-radius: 2px;
}

/* Mobile Drawer */
.ss-mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #ffffff;
    z-index: 1050;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ss-mobile-drawer.open {
    right: 0;
}

.ss-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.ss-drawer-overlay.active {
    display: block;
}

.ss-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.ss-drawer-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #6b7280;
    cursor: pointer;
}

.ss-drawer-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.ss-drawer-link {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    padding: 6px 0;
}

.ss-drawer-contact-group {
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-drawer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
}

.ss-drawer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--ss-primary);
}

.ss-drawer-cta {
    margin-top: auto;
}

.ss-btn-block {
    width: 100%;
    text-align: center;
    padding: 12px 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1120px) {
    .ss-desktop-menu {
        gap: 20px;
    }
    .ss-nav-right {
        gap: 20px;
    }
}

@media (max-width: 980px) {
    .ss-desktop-menu {
        display: none;
    }
    .ss-mobile-toggle {
        display: flex;
    }
    .ss-header-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .ss-header {
        height: 64px;
    }
    .ss-btn-signin {
        padding: 8px 18px;
        font-size: 12px;
    }
    .ss-logo {
        font-size: 24px;
    }
}

/* ==========================================================================
   SUPER-RESPONSIVE HERO SECTION (DESKTOP TO MOBILE)
   ========================================================================== */

.ss-hero-wrapper {
    background: linear-gradient(180deg, #f0faff 0%, #ffffff 100%);
    padding: clamp(30px, 5vw, 65px) 0 clamp(40px, 6vw, 75px);
    width: 100%;
    overflow: hidden;
}

.ss-hero-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 50px);
}

/* LEFT COLUMN */
.ss-hero-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ss-hero-pill {
    display: inline-block;
    background-color: #e0f6ff;
    color: var(--ss-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.ss-hero-heading {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ss-hero-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--ss-text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 560px;
}

/* SEARCH CARD */
.ss-search-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    padding: 6px 8px;
    width: 100%;
    max-width: 620px;
    margin-bottom: 22px;
    position: relative;
}

.ss-search-segment {
    padding: 4px 16px;
}

.ss-segment-tag {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #94a3b8;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.ss-city-segment {
    cursor: pointer;
    min-width: 140px;
    position: relative;
    user-select: none;
}

.ss-segment-field {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.ss-segment-field svg {
    width: 16px;
    height: 16px;
    color: var(--ss-primary);
    flex-shrink: 0;
}

.ss-chevron-icon {
    width: 12px !important;
    height: 12px !important;
    color: #64748b !important;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.ss-city-segment.open .ss-chevron-icon {
    transform: rotate(180deg);
}

/* City Dropdown Menu */
.ss-city-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 300px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    padding: 16px;
    display: none;
    z-index: 100;
}

.ss-city-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.ss-city-dropdown-header {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.ss-city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.ss-city-choice {
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.ss-city-choice:hover, .ss-city-choice.active {
    background: #f0faff;
    color: var(--ss-primary);
}

.ss-search-separator {
    width: 1px;
    height: 32px;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

.ss-input-segment {
    flex: 1;
    min-width: 0;
}

.ss-input-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-input-box svg {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    flex-shrink: 0;
}

.ss-input-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    background: transparent;
}

.ss-search-btn-cta {
    background-color: var(--ss-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.ss-search-btn-cta:hover {
    background-color: var(--ss-primary-dark);
}

.ss-search-btn-cta svg {
    width: 14px;
    height: 14px;
}

/* Trending Tags */
.ss-trending-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ss-trending-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.ss-tag-item {
    font-size: 11px;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s;
}

.ss-tag-item:hover {
    border-color: var(--ss-primary);
    color: var(--ss-primary);
}

/* RIGHT COLUMN: ANIMATION STAGE */
.ss-hero-col-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ss-stage-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-stage-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.ss-stage-art {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 360px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.06));
    animation: stageFloat 4.5s ease-in-out infinite alternate;
}

.ss-art-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Floating Badges */
.ss-badge-chip {
    position: absolute;
    z-index: 10;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 50px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.ss-badge-chip:hover {
    transform: scale(1.03);
}

.ss-chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-chip-icon svg {
    width: 14px;
    height: 14px;
}

.ss-chip-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.ss-chip-text span {
    display: block;
    font-size: 9px;
    color: #64748b;
    font-weight: 500;
}

.chip-cyan { background: #e0f6ff; color: #00aeef; }
.chip-orange { background: #fff2e8; color: #f97316; }
.chip-green { background: #ecfdf5; color: #10b981; }
.chip-purple { background: #f3e8ff; color: #8b5cf6; }

/* Badge Positions */
.badge-pos-top-left {
    top: 5%;
    left: -2%;
    animation: chipFloat1 4.2s ease-in-out infinite alternate;
}

.badge-pos-top-right {
    top: 10%;
    right: -2%;
    animation: chipFloat2 4.6s ease-in-out infinite alternate;
}

.badge-pos-bottom-left {
    bottom: 8%;
    left: 0%;
    animation: chipFloat3 4.8s ease-in-out infinite alternate;
}

.badge-pos-bottom-right {
    bottom: 5%;
    right: 0%;
    animation: chipFloat1 4.4s ease-in-out infinite alternate;
}

@keyframes stageFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes chipFloat1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes chipFloat2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

@keyframes chipFloat3 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* ==========================================================================
   PREMIUM TRUST METRICS (CARD DOCKS)
   ========================================================================== */

.ss-trust-dock {
    width: 100%;
    margin-top: -30px;
    padding: 0 0 60px;
    position: relative;
    z-index: 20;
}

.ss-dock-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ss-dock-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.02);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ss-dock-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: transparent;
    transition: background 0.25s ease;
}

.ss-dock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 174, 239, 0.1), 0 4px 10px rgba(0, 0, 0, 0.03);
    border-color: #dbeafe;
}

.ss-dock-card:hover::after {
    background: var(--ss-primary);
}

/* Icons */
.ss-dock-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-dock-icon svg {
    width: 22px;
    height: 22px;
}

.icon-cyan {
    background: #e0f6ff;
    color: #00aeef;
}

.icon-indigo {
    background: #eef2ff;
    color: #6366f1;
}

.icon-green {
    background: #ecfdf5;
    color: #10b981;
}

.icon-amber {
    background: #fffbeb;
    color: #f59e0b;
}

/* Info */
.ss-dock-info {
    display: flex;
    flex-direction: column;
}

.ss-dock-num {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ss-dock-num span {
    color: var(--ss-primary);
}

.ss-dock-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-top: 2px;
}

.ss-dock-sub {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 2px;
}

/* ==========================================================================
   METRICS DOCK RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1080px) {
    .ss-dock-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .ss-trust-dock {
        margin-top: 0;
        padding-top: 30px;
    }
}

@media (max-width: 600px) {
    .ss-dock-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ss-dock-card {
        padding: 16px;
        border-radius: 14px;
    }
    .ss-dock-icon {
        width: 40px;
        height: 40px;
    }
    .ss-dock-icon svg {
        width: 20px;
        height: 20px;
    }
    .ss-dock-num {
        font-size: 18px;
    }
}

/* ==========================================================================
   BREAKPOINTS: TABLETS & MOBILE SCREEN PERFECTION
   ========================================================================== */

/* Medium Laptops & Tablets (1024px and down) */
@media (max-width: 1024px) {
    .ss-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ss-hero-col-left {
        align-items: center;
        text-align: center;
    }
    .ss-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .ss-trending-tags {
        justify-content: center;
    }
    .ss-stage-box {
        max-width: 440px;
    }
}

/* Small Tablets & Large Phones (768px and down) */
@media (max-width: 768px) {
    .ss-search-card {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px;
        gap: 12px;
    }
    .ss-search-separator {
        display: none;
    }
    .ss-city-segment {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 10px;
    }
    .ss-input-segment {
        width: 100%;
        padding: 0 4px;
    }
    .ss-search-btn-cta {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 13px;
    }
    .ss-city-dropdown {
        width: 100%;
    }
    .ss-metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Phones (480px and down) */
@media (max-width: 480px) {
    .ss-badge-chip {
        padding: 6px 10px;
    }
    .ss-chip-icon {
        width: 24px;
        height: 24px;
    }
    .ss-chip-text strong {
        font-size: 10px;
    }
    /* Hide subtitle on tiny screens so badges don't overlap */
    .ss-chip-text span {
        display: none;
    }
    .badge-pos-top-left { top: 0; left: -4px; }
    .badge-pos-top-right { top: 5%; right: -4px; }
    .badge-pos-bottom-left { bottom: 0; left: -4px; }
    .badge-pos-bottom-right { bottom: 2%; right: -4px; }
}

/* ==========================================================================
   EXPLORE CITIES SECTION
   ========================================================================== */

.ss-cities-section {
    padding: 70px 0;
    background-color: var(--ss-bg-light); /* Matching the body background */
}

.ss-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ss-section-header h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ss-section-header p {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.ss-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

/* Individual City Card */
.ss-city-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Portrait style like Zolo/Airbnb */
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    cursor: pointer;
}

.ss-city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.15);
}

/* Image Background with Zoom Effect */
.ss-city-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.ss-city-card:hover .ss-city-bg {
    transform: scale(1.08); /* Zooms image inside card */
}

/* Dark Gradient Overlay for Text Readability */
.ss-city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    z-index: 2;
}

/* Text Content */
.ss-city-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    width: 100%;
    transition: transform 0.3s ease;
}

.ss-city-card:hover .ss-city-content {
    transform: translateY(-6px);
}

.ss-city-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ss-city-price {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   CITIES RESPONSIVE BREAKPOINTS (DESKTOP -> TABLET -> MOBILE)
   ========================================================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .ss-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile & Small Tablets - Horizontal Swipe Mode */
@media (max-width: 768px) {
    .ss-cities-grid {
        display: flex; /* Switch from grid to flex for horizontal scrolling */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 16px;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    
    .ss-cities-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    
    .ss-city-card {
        min-width: 240px; /* Fixed width for swipe cards */
        flex-shrink: 0;
        scroll-snap-align: start;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .ss-cities-section {
        padding: 50px 0;
    }
    .ss-city-card {
        min-width: 220px;
    }
}

/* ==========================================================================
   FEATURED PROPERTIES: 100% BULLETPROOF FLUID RESPONSIVE
   ========================================================================== */

.ss-featured-section {
    width: 100%;
    padding: clamp(40px, 6vw, 80px) 0;
    background-color: #ffffff;
}

.ss-featured-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

/* Header Area */
.ss-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.ss-sub-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ss-section-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 6px 0;
}

.ss-section-desc {
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--ss-text-muted);
    margin: 0;
}

.ss-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ss-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease;
}

.ss-view-all-link svg {
    width: 16px;
    height: 16px;
}

.ss-view-all-link:hover {
    gap: 10px;
}

/* FLUID GRID (Auto-Fit Pattern) */
.ss-properties-grid {
    display: grid;
    /* Automatically scales: 3 columns on desktop, 2 on tablet, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(16px, 2.5vw, 28px);
    width: 100%;
}

/* Card */
.ss-prop-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0; /* Prevents flex/grid blowouts */
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 174, 239, 0.12);
    border-color: #dbeafe;
}

/* Media */
.ss-prop-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    background: #f1f5f9;
    overflow: hidden;
}

.ss-prop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ss-prop-card:hover .ss-prop-media img {
    transform: scale(1.04);
}

.ss-media-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.ss-badge-gender {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    color: #ffffff;
}

.gender-unisex { background-color: #8b5cf6; }
.gender-boys   { background-color: #0284c7; }
.gender-girls  { background-color: #ec4899; }

.ss-badge-deposit-tag {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #38bdf8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
}

.ss-btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

.ss-btn-favorite svg {
    width: 15px;
    height: 15px;
    color: #64748b;
    transition: color 0.2s ease;
}

.ss-btn-favorite:hover {
    transform: scale(1.1);
    background: #ffffff;
}

.ss-btn-favorite:hover svg {
    color: #ef4444;
}

/* Body */
.ss-prop-body {
    padding: clamp(14px, 2vw, 20px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ss-prop-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.ss-prop-loc svg {
    width: 14px;
    height: 14px;
    color: var(--ss-primary);
    flex-shrink: 0;
}

.ss-prop-loc span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-prop-title {
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

.ss-prop-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ss-prop-title a:hover {
    color: var(--ss-primary);
}

.ss-prop-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.ss-amenity-chip {
    font-size: 10px;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Footer & Pricing */
.ss-prop-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ss-price-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #94a3b8;
    line-height: 1;
    margin-bottom: 3px;
}

.ss-price-val {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.ss-price-val span {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
}

.ss-btn-explore {
    background-color: var(--ss-primary);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.ss-btn-explore:hover {
    background-color: var(--ss-primary-dark);
}

/* ==========================================================================
   BREAKPOINTS: TIGHT MOBILE SCREENS
   ========================================================================== */

@media (max-width: 580px) {
    .ss-featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ss-properties-grid {
        /* On small phones, card takes full available width cleanly */
        grid-template-columns: 1fr;
    }

    .ss-prop-footer {
        flex-wrap: wrap;
    }

    .ss-btn-explore {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* ==========================================================================
   BENTO GRID VALUE PROPOSITION
   ========================================================================== */

.ss-bento-section {
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.04) 0%, transparent 60%), #f8fafc;
}

.ss-bento-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-bento-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(32px, 5vw, 54px);
}

.ss-bento-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--ss-primary);
    background: #e0f6ff;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.ss-bento-heading {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.22;
    margin: 0 0 10px 0;
}

.ss-bento-sub {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--ss-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* BENTO ASYMMETRIC GRID */
.ss-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Base */
.ss-bento-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: clamp(24px, 3vw, 36px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 174, 239, 0.1);
    border-color: #cbd5e1;
}

/* Bento Card Sizes */
.card-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 60%, #f0faff 100%);
}

.card-tall {
    grid-row: span 2;
    background: linear-gradient(180deg, #ffffff 65%, #fff7ed 100%);
}

.card-medium {
    grid-column: span 1;
}

/* Tags */
.ss-bento-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    margin-bottom: 12px;
}

.tag-orange { color: #ea580c; }
.tag-purple { color: #7c3aed; }
.tag-green  { color: #16a34a; }

.ss-bento-content h3 {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.ss-bento-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Badges & Pills inside Bento */
.ss-bento-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ss-bento-perks span {
    font-size: 12px;
    font-weight: 600;
    color: #0369a1;
    background: #e0f2fe;
    padding: 6px 12px;
    border-radius: 8px;
}

.ss-meal-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
}

.ss-meal-pills span {
    font-size: 12px;
    font-weight: 600;
    color: #9a3412;
    background: #ffedd5;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
}

/* Glow Badges */
.ss-bento-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.ss-bento-icon-badge svg {
    width: 24px;
    height: 24px;
}

.bg-orange-glow { background: #ffedd5; color: #ea580c; }
.bg-purple-glow { background: #ede9fe; color: #7c3aed; }
.bg-green-glow  { background: #dcfce7; color: #16a34a; }

.ss-bento-graphic svg {
    width: 140px;
    height: auto;
}

/* ==========================================================================
   RESPONSIVENESS: BENTO DESKTOP TO MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
    .ss-bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .card-wide {
        grid-column: span 2;
    }
    .card-tall {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 680px) {
    .ss-bento-grid {
        grid-template-columns: 1fr;
    }
    .card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    .card-tall {
        grid-column: span 1;
    }
    .ss-bento-graphic {
        display: none;
    }
}


/* ==========================================================================
   EXECUTIVE DARK-SLATE PRIME FOOTER
   ========================================================================== */

.ss-prime-footer {
    background-color: #0b1120;
    color: #94a3b8;
    position: relative;
    padding-top: 40px;
    font-size: 14px;
}

.ss-f-shell {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

/* Floating Action Dock */
.ss-f-dock-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
    transform: translateY(-70px);
    margin-bottom: -40px;
}

.ss-f-dock-card {
    background: #00aeef;
    background: linear-gradient(135deg, #00aeef 0%, #008cc2 100%);
    border-radius: 20px;
    padding: clamp(24px, 3.5vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.25);
    color: #ffffff;
}

.ss-dock-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.ss-dock-left h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.ss-dock-left p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
    max-width: 520px;
}

.ss-dock-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ss-btn-call, .ss-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-btn-call {
    background: #ffffff;
    color: #0b1120 !important;
}

.ss-btn-whatsapp {
    background: rgba(11, 17, 32, 0.35);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ss-btn-call:hover, .ss-btn-whatsapp:hover {
    transform: translateY(-2px);
}

.ss-btn-call svg, .ss-btn-whatsapp svg {
    width: 17px;
    height: 17px;
}

/* Footer Body */
.ss-f-body {
    padding: 50px 0 60px;
}

.ss-f-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 50px);
}

.ss-f-brand {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.ss-f-brand span {
    color: var(--ss-primary);
}

.ss-f-brand-box p {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 16px 0;
    max-width: 340px;
}

.ss-f-cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ss-f-cert-row span {
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-f-col h5 {
    font-size: 12px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 18px 0;
}

.ss-f-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ss-f-col ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.ss-f-col ul li a:hover {
    color: var(--ss-primary);
}

/* Bottom Bar */
.ss-f-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    font-size: 12px;
}

.ss-f-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
}

.ss-f-bottom-flex a {
    color: var(--ss-primary);
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 980px) {
    .ss-f-dock-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-dock-right {
        width: 100%;
        flex-wrap: wrap;
    }
    .ss-f-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ss-f-dock-wrap {
        transform: translateY(-30px);
        margin-bottom: 0;
    }
    .ss-btn-call, .ss-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    .ss-f-grid {
        grid-template-columns: 1fr;
    }
    .ss-f-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   INTERACTIVE BOARD: HOW IT WORKS
   ========================================================================== */

.ss-flow-section {
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
	background: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.04) 0%, transparent 60%), #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.ss-flow-shell {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-flow-top {
    text-align: center;
    max-width: 650px;
    margin: 0 auto clamp(36px, 5vw, 60px);
}

.ss-flow-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ss-primary);
    background: #e0f6ff;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.ss-flow-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.22;
    margin: 0 0 10px 0;
}

.ss-flow-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--ss-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Split Board Layout */
.ss-board-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

/* Left Interactive Step Items */
.ss-board-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-board-step-item {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: clamp(20px, 2.5vw, 26px);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s ease;
}

.ss-step-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: background-color 0.25s ease;
}

.ss-board-step-item:hover,
.ss-board-step-item.active {
    background: #ffffff;
    border-color: #bae6fd;
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.08);
}

.ss-board-step-item.active .ss-step-progress-bar {
    background: var(--ss-primary);
}

.ss-step-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ss-step-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--ss-primary);
}

.ss-step-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #94a3b8;
}

.ss-step-content-box h3 {
    font-size: clamp(17px, 1.6vw, 19px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.ss-step-content-box p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.ss-step-highlight {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #0369a1;
    background: #e0f2fe;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Right Dynamic Preview Screen */
.ss-board-preview {
    position: sticky;
    top: 100px;
}

.ss-preview-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: clamp(24px, 3.5vw, 36px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ss-preview-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.ss-dots {
    display: flex;
    gap: 6px;
}

.ss-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #334155;
}

.ss-badge-live {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #38bdf8;
}

/* View Panes */
.ss-view-pane {
    display: none;
    animation: fadeInPane 0.3s ease-out forwards;
}

.ss-view-pane.active {
    display: block;
}

@keyframes fadeInPane {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ss-pane-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.ss-pane-tag.orange {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.12);
}

.ss-pane-tag.green {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
}

.ss-view-pane h4 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.ss-pane-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.ss-pane-specs span {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-pane-specs span::before {
    content: '•';
    color: var(--ss-primary);
    font-size: 16px;
}

.ss-pane-cost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.ss-pane-cost small {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.ss-pane-cost strong {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.ss-pane-cost strong span {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
}

.ss-pane-pill {
    font-size: 12px;
    font-weight: 700;
    color: #38bdf8;
}

.ss-pane-pill.green {
    color: #34d399;
}

.ss-pane-status {
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 980px) {
    .ss-board-split {
        grid-template-columns: 1fr;
    }
    .ss-board-preview {
        position: relative;
        top: 0;
    }
}
/* ==========================================================================
   CURATED LIVING SPACES (CLEAN ARCHITECTURAL CARDS)
   ========================================================================== */

.ss-spaces-showcase {
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.ss-spaces-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-spaces-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: clamp(32px, 5vw, 48px);
    flex-wrap: wrap;
}

.ss-spaces-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    background: #e0f6ff;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.ss-spaces-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.ss-spaces-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--ss-text-muted);
    margin: 0;
    max-width: 580px;
    line-height: 1.6;
}

/* Filter Nav Buttons */
.ss-spaces-filter-nav {
    display: flex;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.ss-sfilter-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ss-sfilter-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

/* 3-Column Card Grid */
.ss-spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
}

.ss-space-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-space-box:hover {
    transform: translateY(-6px);
    border-color: #bae6fd;
    box-shadow: 0 18px 40px rgba(0, 174, 239, 0.12);
}

.ss-space-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    background: #f1f5f9;
    overflow: hidden;
}

.ss-space-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ss-space-box:hover .ss-space-media img {
    transform: scale(1.05);
}

.ss-space-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-blue { background: #0284c7; }
.badge-green { background: #059669; }

.ss-space-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.ss-space-price-tag span {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
}

.ss-space-content {
    padding: clamp(20px, 2.5vw, 26px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ss-space-content h3 {
    font-size: clamp(17px, 1.6vw, 19px);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.ss-space-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.ss-space-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.ss-space-tags span {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
}

.ss-space-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-space-dep {
    font-size: 11px;
    font-weight: 700;
    color: #059669;
}

.ss-btn-book-tour {
    background: var(--ss-primary);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ss-btn-book-tour:hover {
    background: var(--ss-primary-dark);
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
    .ss-spaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .ss-spaces-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-spaces-filter-nav {
        width: 100%;
        justify-content: space-between;
    }
    .ss-sfilter-btn {
        flex: 1;
        text-align: center;
    }
    .ss-spaces-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   VERIFIED RESIDENT REVIEWS & TRUST
   ========================================================================== */

.ss-reviews-section {
    width: 100%;
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: #fff;
    border-top: 1px solid #f1f5f9;
}

.ss-reviews-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: clamp(32px, 5vw, 48px);
    flex-wrap: wrap;
}

.ss-reviews-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    background: #e0f6ff;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.ss-reviews-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.ss-reviews-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--ss-text-muted);
    margin: 0;
    max-width: 580px;
    line-height: 1.6;
}

/* Google Badge */
.ss-google-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.ss-gb-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ss-gb-score strong {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.ss-gb-stars {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 3px;
}

.ss-gb-text span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.ss-gb-text small {
    font-size: 10px;
    color: #64748b;
}

/* Reviews 3-Column Grid */
.ss-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 28px);
}

.ss-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: clamp(20px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-review-card:hover {
    transform: translateY(-5px);
    border-color: #bae6fd;
    box-shadow: 0 16px 36px rgba(0, 174, 239, 0.1);
}

.ss-rc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
}

.ss-rc-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.ss-rc-stayed {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.ss-rc-body {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 24px 0;
    flex: 1;
}

.ss-rc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.ss-rc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.avatar-green {
    background: #ecfdf5;
    color: #047857;
}

.ss-rc-meta strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.ss-rc-meta span {
    font-size: 11px;
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
    .ss-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .ss-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ss-google-badge {
        width: 100%;
        box-sizing: border-box;
    }
    .ss-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DEDICATED AUTH PORTAL TEMPLATE
   ========================================================================== */

.ss-auth-portal-page {
    width: 100%;
    min-height: 85vh;
    padding: clamp(40px, 6vw, 80px) 0;
    background: #f8fafc;
    display: flex;
    align-items: center;
}

.ss-auth-portal-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.ss-portal-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    display: inline-block;
    margin-bottom: 12px;
}

.ss-auth-portal-banner h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.ss-auth-portal-banner p {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.ss-portal-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-pperk-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.ss-pperk-icon {
    font-size: 20px;
    background: #f1f5f9;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-pperk-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 2px;
}

.ss-pperk-item span {
    font-size: 12px;
    color: #64748b;
}

/* Auth Box */
.ss-auth-portal-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.ss-role-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 22px;
}

.ss-role-btn {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.ss-role-btn.active {
    border-color: var(--ss-primary);
    background: #e0f6ff;
    color: var(--ss-primary);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.15);
}

.ss-r-icon {
    font-size: 18px;
}

.ss-portal-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 20px;
}

.ss-ptab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
}

.ss-ptab.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ss-pform-group {
    margin-bottom: 16px;
}

.ss-pform-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.ss-pform-group input,
.ss-pform-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 13.5px;
    color: #0f172a;
    box-sizing: border-box;
    outline: none;
}

.ss-pform-group input:focus,
.ss-pform-group select:focus {
    border-color: var(--ss-primary);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

.ss-btn-portal-submit {
    width: 100%;
    background: var(--ss-primary);
    color: #ffffff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ss-btn-portal-submit:hover {
    background: var(--ss-primary-dark);
}

/* ==========================================================================
   PARTNER WITH US / LIST PROPERTY TEMPLATE
   ========================================================================== */

.ss-partner-hero {
    padding: clamp(50px, 7vw, 90px) 0;
    background: #0f172a;
    color: #ffffff;
}

.ss-partner-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-partner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.ss-p-hero-chip {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 14px;
}

.ss-p-hero-left h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.ss-p-hero-left p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0 0 32px 0;
}

.ss-partner-stats-dock {
    display: flex;
    gap: 24px;
}

.ss-pstat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #38bdf8;
}

.ss-pstat span {
    font-size: 12px;
    color: #94a3b8;
}

.ss-owner-lead-card {
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(24px, 3.5vw, 36px);
    color: #0f172a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ss-owner-lead-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.ss-owner-lead-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 20px 0;
}

.ss-btn-owner-submit {
    width: 100%;
    background: var(--ss-primary);
    color: #ffffff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.ss-partner-features {
    padding: clamp(60px, 7vw, 90px) 0;
    background: #ffffff;
}

.ss-pfeat-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(30px, 4vw, 50px);
}

.ss-pfeat-header h2 {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.ss-pfeat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ss-pfeat-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

.ss-pf-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.ss-pfeat-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.ss-pfeat-box p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .ss-auth-portal-shell,
    .ss-partner-hero-grid {
        grid-template-columns: 1fr;
    }
    .ss-pfeat-grid {
        grid-template-columns: 1fr;
    }
}
.ss-forgot-pass {
    font-size: 12px;
}
.ss-label-split label {
    margin-bottom: 0;
}
.ss-label-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ss-portal-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ss-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.ss-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
/* ==========================================================================
   AUTHENTICATED HEADER DOCK & DASHBOARD STYLES
   ========================================================================== */

.ss-user-dock {
    position: relative;
}

.ss-user-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ss-user-badge-btn:hover {
    border-color: var(--ss-primary);
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.12);
}

.ss-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ss-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-user-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.ss-role-pill {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
}

.ss-role-pill.resident {
    background: #e0f2fe;
    color: #0369a1;
}

.ss-role-pill.partner {
    background: #ecfdf5;
    color: #047857;
}

.ss-user-badge-btn svg {
    width: 14px;
    height: 14px;
    color: #64748b;
}

/* User Dropdown */
.ss-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 0;
    width: 220px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    display: none;
    z-index: 1000;
}

.ss-user-dropdown-menu.show {
    display: block;
}

.ss-ud-meta {
    padding: 6px 18px 10px;
}

.ss-ud-meta strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
}

.ss-ud-meta small {
    display: block;
    font-size: 11px;
    color: #64748b;
}

.ss-user-dropdown-menu hr {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 4px 0 8px;
}

.ss-user-dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-user-dropdown-menu ul li a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.ss-user-dropdown-menu ul li a:hover {
    background: #f8fafc;
    color: var(--ss-primary);
}

.ss-user-dropdown-menu ul li a.ss-logout-link {
    color: #ef4444;
}

/* Dashboard Page */
.ss-dashboard-page {
    padding: clamp(40px, 6vw, 70px) 0;
    background: #f8fafc;
    min-height: 80vh;
}

.ss-dash-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 32px);
    box-sizing: border-box;
}

.ss-dash-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: clamp(24px, 4vw, 36px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ss-role-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--ss-primary);
    display: block;
    margin-bottom: 6px;
}

.ss-dash-banner h1 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.ss-dash-banner p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.ss-btn-dash-primary {
    background: var(--ss-primary);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
}

.ss-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ss-metric-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
}

.ss-mbox-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ss-metric-box strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.ss-metric-box small {
    font-size: 11px;
    color: #94a3b8;
}

.ss-dash-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
}

.ss-dash-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.ss-dash-empty {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

@media (max-width: 820px) {
    .ss-metrics-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   OTP VERIFICATION CARD STYLES
   ========================================================================== */

.ss-otp-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.ss-otp-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.ss-otp-card-header p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.ss-otp-code-input {
    text-align: center;
    font-size: 26px !important;
    font-weight: 800;
    letter-spacing: 12px;
    color: #0f172a;
    background: #f8fafc;
    border: 2px solid #cbd5e1 !important;
    border-radius: 12px;
    padding: 14px 10px !important;
}

.ss-otp-code-input:focus {
    border-color: var(--ss-primary) !important;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15) !important;
}

.ss-otp-resend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.ss-btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ss-primary);
    cursor: pointer;
    text-decoration: underline;
}

.ss-btn-link:hover {
    color: var(--ss-primary-dark);
}

/* Dashboard Property List Items */
.ss-dash-prop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.ss-dash-prop-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
}

.ss-dash-prop-row strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 2px;
}

.ss-dash-prop-row span {
    font-size: 12px;
    color: #64748b;
}

.ss-status-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.ss-status-publish {
    background: #ecfdf5;
    color: #047857;
}

.ss-status-pending {
    background: #fffbeb;
    color: #b45309;
}
/* Dashboard Property List Items */
.ss-dash-prop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.ss-dash-prop-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
}

.ss-dash-prop-row strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 2px;
}

.ss-dash-prop-row span {
    font-size: 12px;
    color: #64748b;
}

.ss-status-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.ss-status-publish {
    background: #ecfdf5;
    color: #047857;
}

.ss-status-pending {
    background: #fffbeb;
    color: #b45309;
}