@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2FED9A;
    --primary-purple: #9333EA;
    --dark-blue: #1E40AF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --border-color: #E5E7EB;

    /* Global site background — visible mint (TL) + slate (BR); old stack was too subtle */
    --site-bg:
        linear-gradient(165deg,
            var(--color-white-solid, #FFFFFF) 0%,
            #F0FDF4 22%,
            var(--color-grey-96, #F1F5F9) 52%,
            #FAFAFA 100%),
        radial-gradient(100% 90% at 100% 100%, rgba(15, 23, 42, 0.14) 0%, transparent 55%),
        radial-gradient(95% 85% at 0% 0%, rgba(47, 237, 154, 0.26) 0%, transparent 52%);
}

html {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #F1F5F9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: transparent !important;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100vh;
}

/* Full-viewport gradient behind all content (main/sections stay transparent) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--site-bg);
    pointer-events: none;
}

/* Don’t paint an opaque layer over the fixed gradient */
[class$="-page"] {
    background: transparent !important;
}

/* Base Container - 1440px Design */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.highlight-green {
    color: #2FED9A;
    display: inline-block;
}

.section-label {
    color: #2FED9A;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Hero Background Wrapper (starts from top) */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background-wrapper .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-background.jpg') center/cover;
    filter: grayscale(0.5);
}

.hero-background-wrapper .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Gradient-hero-background.jpg') center/cover;
    opacity: 1;
}

/* Header Wrapper — home overlays hero; inner pages use sticky (see below) */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
    overflow: visible;
    height: auto;
}

/* Header Styles */
.main-header {
    background-color: transparent;
    position: relative;
    z-index: 10000;
    padding: 0;
    overflow: visible;
    height: auto;
}

.main-header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Figma header bar: glass pill ~1352×78, sticky on scroll (inner pages) */
.header-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    min-height: 78px;
    padding: 10px clamp(18px, 2.5vw, 32px);
    max-width: min(1352px, calc(100% - 48px));
    margin: 0 auto;
    width: calc(100% - 40px);
    position: relative;
    overflow: visible;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.65);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Inner pages: header sticks under top margin while scrolling */
body:has(> .header-wrapper + main) .header-wrapper {
    position: sticky;
    top: 20px;
    padding-top: 20px;
    overflow: visible;
}

body:has(> .header-wrapper + main) > main {
    padding-top: 28px !important;
}

.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.header-logo-link:focus-visible {
    outline: 2px solid #2FED9A;
    outline-offset: 3px;
    border-radius: 6px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.back-to-home-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    height: 36px;
}

.back-to-home-btn:hover {
    background: #E2E8F0;
    border-color: #CBD5E1;
}

.back-to-home-btn i {
    font-size: 12px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 30px;
    position: relative;
    z-index: 10001;
    overflow: visible;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

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

.nav-link.dropdown-link {
    position: relative;
}

.nav-link.dropdown-link i {
    font-size: 10px;
    color: var(--text-gray);
    transition: transform 0.3s;
}

.nav-link.dropdown-link:hover i {
    color: var(--primary-green);
}

.nav-dropdown-wrapper.active .nav-link.dropdown-link i {
    transform: rotate(180deg);
    color: var(--primary-green);
}

/* Navigation Dropdown Wrapper */
.nav-dropdown-wrapper {
    position: relative;
    z-index: 10001;
    overflow: visible;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: fixed;
    width: 503px;
    height: 325px;
    background: #FFFFFF;
    border-radius: 6px;
    border-top: 1px solid #2FED9A;
    box-shadow: 0 17px 64px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10001;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Tools Dropdown - Auto height for single column */
#toolsDropdown {
    width: auto;
    min-width: 200px;
    height: auto;
    max-height: 500px;
    overflow-y: auto;
}

.nav-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.top-toolbar-property-type {
    position: relative;
    display: inline-block;
    z-index: 100000;
    overflow: visible;
}

.top-toolbar-property-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 32px 10px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    color: #020617;
    cursor: pointer;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    text-align: left;
}

.top-toolbar-property-trigger:hover,
.top-toolbar-property-trigger:focus {
    border-color: #2FED9A;
}

.top-toolbar-property-trigger i {
    font-size: 10px;
    color: var(--text-gray);
}

/* Possession / Furnished custom dropdown — matches Property Type style */
.top-toolbar-pf-wrap {
    position: relative;
    display: inline-block;
    z-index: 100000;
    overflow: visible;
}

.pf-dropdown .property-type-dropdown-title {
    margin-bottom: 6px;
}

.pf-buy-group,
.pf-rent-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.property-type-dropdown {
    position: fixed !important;
    width: 216px;
    max-width: calc(100vw - 32px);
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 17px 64px 12px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999999 !important;
    overflow: visible;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: none !important;
}

.property-type-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.property-type-dropdown-inner {
    padding: 14px 14px 10px 14px;
    max-height: 520px; /* compact like your first screenshot */
    overflow-y: auto;
}

.property-type-dropdown-title {
    font-weight: 600;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 10px;
}

.property-type-section {
    margin-top: 10px;
}

.property-type-section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2FED9A;
    margin: 10px 0 6px;
}

.property-type-item,
.pf-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.property-type-item:hover,
.pf-item:hover {
    background: #F3F4F6;
    border-radius: 10px;
}

.property-type-dropdown-inner::-webkit-scrollbar {
    width: 6px;
}
.property-type-dropdown-inner::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 999px;
}

.nav-dropdown-content {
    display: flex;
    height: 100%;
    padding: 0;
}

.nav-dropdown-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.nav-dropdown-column:first-child {
    border-right: 1px solid #E5E7EB;
}

.nav-dropdown-header {
    background: #2FED9A;
    color: #0F172A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-align: center;
}

.nav-dropdown-item {
    display: block;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 4px;
    margin-bottom: 4px;
}

.nav-dropdown-item:hover {
    background-color: #F3F4F6;
    color: var(--primary-green);
}

/* Tools Dropdown - Single Column */
.tools-dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    height: 100%;
}

.tools-dropdown-content .nav-dropdown-item {
    padding: 10px 16px;
    margin: 0;
    border-radius: 0;
}

.tools-dropdown-content .nav-dropdown-item:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.tools-dropdown-content .nav-dropdown-item:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.post-property-btn {
    background-color: #0F172A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
}

.post-property-btn:hover {
    background-color: #1E293B;
}

.user-icon-btn {
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.user-icon-btn:hover {
    color: var(--primary-green);
}

.user-icon-btn i.fa-chevron-down {
    font-size: 10px;
    color: var(--text-gray);
}

/* ===== User Menu Dropdown ===== */
.user-menu-wrapper {
    position: relative;
}

.user-icon-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1.5px solid #E2E8F0;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 15px;
    color: #0F172A;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-icon-btn:hover {
    border-color: #2FED9A;
    box-shadow: 0 0 0 3px rgba(47, 237, 154, 0.12);
    color: #0F172A;
}

.user-icon-btn i.fa-chevron-down {
    font-size: 10px;
    color: #64748B;
    transition: transform 0.2s;
}

.user-icon-btn.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown {
    position: fixed;
    width: 200px;
    min-width: 168px;
    max-width: min(220px, calc(100vw - 16px));
    background: #FFFFFF;
    border-radius: 12px;
    border: none;
    border-top: 1px solid #2FED9A;
    box-shadow: 0 17px 64px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10001;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-dropdown-content {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
}

.user-dropdown-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Profile menu items — icon tile + label */
.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    color: #4B4B4B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s, background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    border-radius: 0;
    border-bottom: 1px solid #EEEEEE;
}

.user-dropdown .dropdown-item:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.user-dropdown .dropdown-item:first-child {
    padding-top: 2px;
}

.user-dropdown .dropdown-item:hover {
    background: transparent;
    color: #0a1629;
}

.user-dropdown .dropdown-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #22C55E;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.user-dropdown .dropdown-item:hover i {
    background: #E8FDF4;
    color: #16A34A;
}

/* Guest vs logged-in: Login/Registration vs Logout (localStorage `user` in header) */
html.hunt-user-logged-in .hunt-auth-guest-only {
    display: none !important;
}

html:not(.hunt-user-logged-in) .hunt-auth-user-only {
    display: none !important;
}

.footer-covid-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 9999px;
    background: rgba(47, 237, 154, 0.1);
    border: 1px solid rgba(47, 237, 154, 0.6);
    color: #BBF7D0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.2s;
}

.footer-covid-btn i {
    font-size: 15px;
}

.footer-covid-btn:hover {
    background: #2FED9A;
    color: #022C22;
    border-color: #2FED9A;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 20px 80px 20px;
    z-index: 100;
    padding-top: 140px;
    overflow: hidden;
}

.hero-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    z-index: 1;
    margin-top: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 96px;
    line-height: 1.2;
}

/* Home hero — Buy/Rent + search (Figma) */
.hero-search-panel.search-container {
    position: relative;
    width: 100%;
    max-width: 988px;
    margin: 72px auto 0;
    padding: 24px 32px 28px;
    background: rgba(249, 249, 248, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 3px solid rgba(26, 26, 26, 0.2);
    border-radius: 34px;
    box-shadow: 0 -1px 43.4px rgba(0, 0, 0, 0.25);
}

.hero-search-panel .hero-search-buy-rent.buy-rent-toggle {
    position: absolute;
    left: 50%;
    top: -24px;
    transform: translate(-50%, -100%);
    z-index: 4;
    display: inline-flex;
    margin: 0;
    padding: 5px;
    background: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.hero-search-panel .toggle-btn {
    padding: 12px 36px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    color: #1A1A1A;
}

.hero-search-panel .toggle-btn.active {
    background: #1A1A1A;
    color: #FFFFFF;
    box-shadow: none;
}

.hero-search-panel .toggle-btn:not(.active):hover {
    background: rgba(26, 26, 26, 0.06);
    color: #1A1A1A;
}

.hero-search-panel .search-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-search-panel .search-row-first {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hero-search-panel .search-row-second {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-search-panel .search-row-first .search-input-group {
    flex: 1;
    min-width: min(100%, 280px);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-search-panel .location-icon {
    position: absolute;
    left: 18px;
    width: 22px;
    height: 22px;
    object-fit: contain;
    z-index: 1;
    opacity: 0.85;
}

.hero-search-panel .search-input {
    width: 100%;
    min-height: 61px;
    padding: 16px 18px 16px 52px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 12px;
    font-size: 16px;
    background: #FFFFFF;
    color: #1A1A1A;
    box-sizing: border-box;
}

.hero-search-panel .search-input::placeholder {
    color: #64748B;
}

.hero-search-panel .search-dropdown {
    flex: 1 1 140px;
    min-width: 0;
    min-height: 48px;
    padding: 12px 36px 12px 16px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.hero-search-panel .filter-btn {
    width: 61px;
    min-width: 61px;
    height: 61px;
    padding: 0;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search-panel .filter-btn:hover {
    border-color: rgba(26, 26, 26, 0.22);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-search-panel .filter-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-search-panel .search-btn {
    min-width: 169px;
    height: 61px;
    padding: 0 28px;
    box-sizing: border-box;
    background: #2FED9A;
    color: #1A1A1A;
    border: none;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 6.5px rgba(0, 0, 0, 0.25);
    transition: filter 0.2s, transform 0.15s;
}

.hero-search-panel .search-btn__icon {
    font-size: 18px;
    color: #1A1A1A;
}

.hero-search-panel .search-btn:hover {
    filter: brightness(1.03);
}

.hero-search-panel .search-btn:active {
    transform: scale(0.99);
}

.hero-search-panel .top-toolbar-property-type {
    flex: 1 1 160px;
    min-width: 0;
}

.hero-search-panel .top-toolbar-property-trigger {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 12px;
    background: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    box-shadow: none;
}

.hero-search-panel .top-toolbar-property-trigger:hover,
.hero-search-panel .top-toolbar-property-trigger:focus {
    border-color: rgba(26, 26, 26, 0.28);
}

.hero-search-panel .property-type-chevron {
    margin-left: auto;
    font-size: 11px;
    color: #64748B;
    flex-shrink: 0;
}

.hero-search-panel .post-requirement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 258px;
    height: 45px;
    padding: 0 20px;
    margin-left: auto;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 8px;
    background: #FFFFFF;
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s;
}

.hero-search-panel .post-requirement-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(26, 26, 26, 0.35);
    color: #1A1A1A;
}

/* Legacy class hooks (home only uses hero-search-panel) */
.search-bar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-row-first {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-row-second {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-row-first .search-input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
}

.location-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
}

.search-dropdown {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
}

.filter-btn {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.filter-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.search-btn {
    background-color: #2FED9A;
    color: #020617;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #26DD8A;
}

.post-requirement-btn {
    padding: 12px 20px;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: auto;
}

.post-requirement-btn:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    /* Let the site background gradient show through. Individual sections/cards
       can still define their own backgrounds if needed. */
    background-color: transparent;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0%;
    margin-bottom: 15px;
    color: black;
}

.section-subtitle {
    font-size: 18px;
    color: black;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: black;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-link {
    color: black;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.explore-btn, .explore-network-btn {
    background-color: #0F172A;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.explore-btn:hover, .explore-network-btn:hover {
    background-color: #1E293B;
}

.see-all-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.see-all-link:hover {
    color: var(--primary-green);
}

/* Projects Section */
.projects-section {
    background-color: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.project-text-group {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 9.07px;
    font-weight: 500;
    line-height: 12.09px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.7);
    width: auto;
    height: 13px;
    vertical-align: middle;
    margin: 0;
    white-space: nowrap;
}

.project-name-overlay {
    font-family: 'Poppins', sans-serif;
    font-size: 15.12px;
    font-weight: 700;
    line-height: 21.17px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 140px;
    height: 22px;
    vertical-align: middle;
}

.project-arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 34.72px;
    height: 34.72px;
    border-radius: 7558.44px;
    border: 0.76px solid transparent;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.05px;
    transition: transform 0.3s;
    box-sizing: border-box;
}

.project-arrow-btn:hover {
    transform: scale(1.1);
}

.project-arrow-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-location {
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-metrics {
    display: flex;
    gap: 10px;
}

.metric-box {
    flex: 1;
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demand-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.demand-indicator i {
    font-size: 14px;
}

.est-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* Properties Grid (Resale & Rent) */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.property-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    box-shadow:
        0 4px 6px -4px rgba(0, 0, 0, 0.10),
        0 10px 15px -3px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */

.results-page {
    background: #F3F4F6;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    /* overflow-x: hidden removed — it creates a new stacking context that
       clips position:fixed dropdowns (property-type, nav) before they render */
    overflow: visible;
}

/* On results page, header should push content down (no overlap) */
.results-page .header-wrapper {
    position: static;
    padding-top: 0;
    max-width: 100%;
    /* overflow hidden on header-wrapper clips fixed dropdowns — use visible */
    overflow: visible;
}

/* Top Toolbar - Right after header */
.results-top-toolbar {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 0.89px solid #E2E8F0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    margin-top: 0;
    overflow: visible;
    /* Ensure toolbar z-index is below the fixed dropdown (z-index 9999999) */
    z-index: 200;
}

/* Search results: gap below header + toolbar edge-to-edge (break out of .results-page max-width) */
.results-page .results-top-toolbar {
    margin-top: 20px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

.results-page .top-toolbar-content {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding-left: clamp(12px, 2vw, 24px);
    padding-right: clamp(12px, 2vw, 24px);
}

.results-page .top-toolbar-search {
    max-width: none;
    flex: 1;
    min-width: 0;
}

/* Toolbar: search + mobile filter button (hamburger hidden on desktop) */
.top-toolbar-search-row {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-width: 0;
    max-width: 706px;
}

.results-page .top-toolbar-search-row {
    max-width: none;
}

.results-mobile-filter-btn {
    display: none;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #0F172A;
    color: #2FED9A;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
    transition: background 0.2s, transform 0.15s;
}

.results-mobile-filter-btn i {
    font-size: 18px;
}

.results-mobile-filter-btn:hover,
.results-mobile-filter-btn:focus-visible {
    background: #1e293b;
    outline: none;
}

.results-mobile-filter-btn:active {
    transform: scale(0.96);
}

/* Mobile filter drawer: toolbar slot + header (hidden on desktop) */
.results-drawer-toolbar-slot {
    display: none;
}

.sidebar-mobile-drawer-head {
    display: none;
}

.results-filter-backdrop {
    display: none;
}

.top-toolbar-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: auto;
    position: relative;
    z-index: 100000;
    overflow: visible;
}

.buy-rent-toggle-small {
    display: flex;
    background: #F1F5F9;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 3.89px;
    gap: 0;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    width: fit-content;
    height: fit-content;
}

.toggle-btn-small {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.toggle-btn-small.active {
    background: #2FED9A;
    color: #020617;
    box-shadow: none;
}

.top-toolbar-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 706px;
}

.top-search-input {
    flex: 1;
    padding: 10px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    background: #F8FAFC;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    outline: none;
}

.top-search-input:focus {
    border-color: #2FED9A;
}

.top-search-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #2FED9A;
    color: #020617;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-toolbar-dropdowns {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 100000;
    overflow: visible;
}

.top-toolbar-select {
    padding: 10px 32px 10px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    color: #020617;
    cursor: pointer;
    appearance: none;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: border-color 0.2s;
}

.top-toolbar-select:focus {
    border-color: #2FED9A;
}

/* Navigation Tabs */
.results-nav-tabs {
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
}

.nav-tabs-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
}

.nav-tab {
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #E2E8F0;
    position: relative;
    height: 44px;
    box-sizing: border-box;
}

.nav-tab:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.nav-tab:last-child {
    border-right: none;
}

.nav-tab[data-tab="arrivals"] {
    border-right: 0.89px solid #F8FAFC;
}

.nav-tab i {
    font-size: 16px;
    color: inherit;
}

.nav-tab:hover {
    color: #020617;
    background: #F8FAFC;
}

.nav-tab.active {
    background: #0F172A;
    color: #FFFFFF;
}

.nav-tab.active i {
    color: #2FED9A;
}

.nav-rank-dropdown {
    margin-left: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-by-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 900;
    line-height: 13.5px;
    letter-spacing: 1.8px;
    color: #CBD5E1;
    text-transform: uppercase;
    white-space: nowrap;
}

.rank-select {
    padding: 7.11px 20px 1.89px 12px;
    height: 24px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 900;
    line-height: 13.5px;
    letter-spacing: 1.8px;
    color: #020617;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    outline: none;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    transition: border-color 0.2s;
    width: fit-content;
    min-width: 89.72px;
    vertical-align: middle;
    box-sizing: border-box;
}

.rank-select:focus {
    border-color: #2FED9A;
}

.rank-select option {
    font-weight: 900;
    color: #020617;
    text-transform: uppercase;
}

.results-main {
    padding-top: 16px;
    padding-bottom: 0;
}

.results-toolbar-section {
    padding-bottom: 10px;
}

.results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.results-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-city-pill {
    padding: 8px 16px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    gap: 6px;
    align-items: center;
}

.results-city-pill .pill-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #6B7280;
}

.results-city-pill .pill-value {
    font-size: 13px;
    font-weight: 600;
}

.results-toolbar-filters {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-filter-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.toolbar-filter-pill.active {
    background: #0F172A;
    color: #2FED9A;
    border-color: #0F172A;
}

.toolbar-selects {
    display: flex;
    gap: 8px;
}

.toolbar-chip {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    font-size: 12px;
    cursor: pointer;
}

.results-content-section {
    padding-top: 10px;
    max-width: 100%;
    overflow: visible;
}

.results-layout {
    display: grid;
    grid-template-columns: 256px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.results-sidebar .sidebar-card {
    position: sticky;
    top: 120px;
    width: 256px;
    min-height: 858px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 24px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    margin: 0;
}

.sidebar-reset-btn {
    margin: 0;
    border: none;
    background: transparent;
    color: #EF4444;
    font-size: 12px;
    cursor: pointer;
}

.sidebar-group {
    margin-top: 16px;
}

.sidebar-group h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sidebar-pill-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.sidebar-pill {
    padding: 7.89px 35.74px 7.89px 35.72px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    font-size: 11px;
    cursor: pointer;
    width: 100%;
    height: 29.78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #9CA3AF;
    transition: all 0.2s;
    white-space: nowrap;
}

.sidebar-pill.active {
    background: #2FED9A;
    color: #020617;
    border-color: #2FED9A;
    font-weight: 700;
}

.sidebar-range-row {
    display: flex;
    gap: 8px;
}

.sidebar-input {
    flex: 1;
    width: 103.11px;
    height: 33.95px;
    padding: 8.78px 9.89px 10.17px 9.89px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    font-size: 11px;
    background: #F8FAFC;
    outline: none;
}

.sidebar-checkbox-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748B;
    cursor: pointer;
    position: relative;
}

.sidebar-checkbox input {
    display: none;
}

.sidebar-checkbox span {
    position: relative;
}

.sidebar-checkbox::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}

.sidebar-checkbox input:checked + span {
    font-weight: 700;
    color: #020617;
}

.sidebar-checkbox:has(input:checked)::before {
    background: #2FED9A;
    border-color: #2FED9A;
    border-top: 1px solid #2FED9A;
}

/* Outer pointer (darker color - #020617) */
.sidebar-checkbox:has(input:checked)::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid #020617;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    z-index: 2;
}

/* Inner pointer (lighter green color - #2FED9A) */
.sidebar-checkbox:has(input:checked) span::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid #2FED9A;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    z-index: 3;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Property pagination bar ── */
.prop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 8px;
    flex-wrap: wrap;
}
.prop-page-btn,
.prop-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.prop-page-btn:hover:not(:disabled),
.prop-page-num:hover:not(.active) {
    background: #F0FDF8;
    border-color: #2FED9A;
    color: #020617;
}
.prop-page-num.active {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #020617;
    cursor: default;
}
.prop-page-btn.disabled,
.prop-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.prop-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    color: #9CA3AF;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}
.prop-page-info {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    margin-left: 8px;
    white-space: nowrap;
}
.prop-page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.results-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.results-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 8px 24px;
    box-shadow:
        0 4px 6px -4px rgba(220, 38, 38, 0.20),
        0 10px 15px -3px rgba(220, 38, 38, 0.20);
    position: relative;
    z-index: 1;
}

.results-card-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
}

.results-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3.89px 9.89px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(241, 245, 249, 0.5);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 900;
    line-height: 12px;
    letter-spacing: 0.8px;
    color: #2FED9A;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.new-launch-badge {
    top: 12px;
    left: 12px;
    color: #DC2626;
}

.verified-badge:not(.new-launch-badge) + .new-launch-badge,
.new-launch-badge + .verified-badge:not(.new-launch-badge) {
    display: none;
}

.results-card-main {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.results-posted-date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
    text-transform: uppercase;
}

.results-card-header {
    margin-bottom: 8px;
}

.results-price-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.results-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.results-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

.property-badge-featured.small,
.property-badge-resale.small {
    font-size: 10px;
    padding: 3px 8px;
}

.results-title {
    font-size: 16px;
    font-weight: 700;
    color: #020617;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.results-location-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.results-location {
    font-size: 12px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.results-location i {
    color: #EF4444;
    font-size: 10px;
}

.results-geospatial {
    font-size: 12px;
    color: #3B82F6;
    text-decoration: underline;
    font-weight: 500;
}

.results-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.results-price {
    text-align: right;
}

.results-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #2FED9A;
    line-height: 1.2;
}

.results-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 16px;
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.spec-item i {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 2px;
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 12px;
    color: #020617;
    font-weight: 700;
    text-transform: uppercase;
}

.results-spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 10px;
}

.results-spec-row span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.results-spec-row span i {
    font-size: 10px;
    color: #9CA3AF;
}

.results-actions-row {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.results-posted-date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .results-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-sidebar .sidebar-card {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        position: relative;
        top: 0;
        padding: 20px 16px;
    }

    .sidebar-pill-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .sidebar-input {
        width: 100%;
        min-width: 0;
    }

    .results-card {
        grid-template-columns: 1fr;
    }
}

/* —— Search results: phone layout — filter drawer from right —— */
@media (max-width: 768px) {
    /* Drawer width — backdrop stops here so dim layer never covers the filter panel */
    .results-page {
        --results-filter-drawer-w: min(92vw, 400px);
    }

    .results-page .top-toolbar-search-row {
        flex: 1;
        min-width: 0;
        max-width: none;
    }

    .results-mobile-filter-btn {
        display: inline-flex;
    }

    .results-drawer-toolbar-slot {
        display: block;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #E2E8F0;
    }

    .results-drawer-toolbar-slot .top-toolbar-dropdowns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .results-drawer-toolbar-slot .top-toolbar-property-type,
    .results-drawer-toolbar-slot .top-toolbar-pf-wrap,
    .results-drawer-toolbar-slot .top-toolbar-select {
        width: 100%;
        min-width: 0;
    }

    .results-drawer-toolbar-slot .top-toolbar-property-trigger {
        width: 100%;
        text-align: left;
        justify-content: space-between;
    }

    .sidebar-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #E2E8F0;
    }

    .sidebar-mobile-drawer-title {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
    }

    .sidebar-drawer-close {
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 12px;
        background: #f1f5f9;
        color: #64748b;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .sidebar-drawer-close:hover,
    .sidebar-drawer-close:focus-visible {
        background: #e2e8f0;
        color: #0f172a;
        outline: none;
    }

    /* Dim only the page behind the drawer — not the drawer column (fixes overlay on top of filters). */
    .results-filter-backdrop {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: var(--results-filter-drawer-w);
        width: auto;
        max-width: none;
        background: rgba(15, 23, 42, 0.4);
        z-index: 100002;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        -webkit-tap-highlight-color: transparent;
        pointer-events: none;
    }

    body.results-filters-drawer-open .results-filter-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.results-filters-drawer-open .results-page .results-main {
        position: relative;
        z-index: 100050;
    }

    .results-layout {
        display: block;
    }

    .results-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: var(--results-filter-drawer-w);
        max-width: 100%;
        z-index: 100003;
        -webkit-font-smoothing: antialiased;
        margin: 0;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        visibility: hidden;
    }

    body.results-filters-drawer-open .results-sidebar {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
    }

    .results-sidebar .sidebar-card {
        width: 100%;
        min-height: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        border: none;
        border-left: 1px solid #e2e8f0;
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: max(16px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom)) 16px;
        position: sticky;
        top: 0;
        background: #ffffff;
        isolation: isolate;
    }

    .results-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .results-main {
        padding-top: 16px;
        padding-bottom: 48px;
    }

    .results-content-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Top toolbar: one row — Buy/Rent | search | filter */
    .results-top-toolbar {
        padding: 10px 0;
    }

    .top-toolbar-content {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 16px;
        align-items: center;
    }

    .buy-rent-toggle-small {
        flex-shrink: 0;
    }

    .top-toolbar-search-row {
        flex: 1;
        min-width: 0;
    }

    .top-toolbar-search {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }

    .top-search-input {
        min-width: 0;
        padding: 10px 12px;
        font-size: 16px; /* avoid iOS zoom on focus */
    }

    /* Dropdowns moved into drawer via JS */
    .results-page .top-toolbar-content.results-toolbar-filters-in-drawer > .top-toolbar-dropdowns {
        display: none !important;
    }

    /* Nav tabs: scroll or wrap */
    .results-nav-tabs {
        margin-bottom: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs-wrapper {
        flex-wrap: nowrap;
        padding: 0 12px;
        min-width: min-content;
    }

    .nav-tab {
        padding: 12px 16px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-tab span {
        display: inline;
    }

    .nav-rank-dropdown {
        padding: 0 12px;
        flex-shrink: 0;
    }

    .rank-select {
        min-width: 80px;
        font-size: 8px;
    }

    /* Results card */
    .results-card {
        padding: 12px 16px;
        gap: 16px;
    }

    .results-card-image {
        height: 200px;
    }

    .results-card-main {
        padding-top: 4px;
    }

    .results-posted-date {
        position: static;
        margin-bottom: 4px;
        font-size: 10px;
    }

    .results-price-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .results-title {
        font-size: 14px;
    }

    .results-spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
        margin-bottom: 12px;
    }

    .results-spec-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-actions-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .results-actions-row .summary-primary-btn,
    .results-actions-row .summary-secondary-btn {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (max-width: 479px) {
    .results-main {
        padding-top: 90px;
    }

    .results-content-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-toolbar-content {
        padding: 0 12px;
    }

    .top-toolbar-dropdowns .top-toolbar-select {
        flex: 1 1 100%;
    }

    .nav-tab {
        padding: 10px 12px;
        font-size: 11px;
    }

    .results-card {
        padding: 10px 12px;
    }

    .results-card-image {
        height: 180px;
    }

    .results-spec-grid {
        grid-template-columns: 1fr;
    }

    .results-spec-row {
        grid-template-columns: 1fr;
    }

    .results-sidebar .sidebar-card {
        padding: 16px 12px;
    }

    .sidebar-pill-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-pill {
        padding: 8px 12px;
        font-size: 10px;
    }
}

.property-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.property-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
}

.property-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.property-tags-container {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    position: relative;
}

.property-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.resale-tag {
    background-color: #2FED9A;
}

.new-tag {
    background-color: #2FED9A;
}

.prime-location-tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rent-tag {
    background-color: #059669;
}

.secondary-tag {
    background-color: #374151;
    color: white;
}

.favorite-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    flex-shrink: 0;
    position: relative;
}

.favorite-btn .heart-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Liked state (used by JS shortlist/like action) — green glow matches brand */
.favorite-btn.liked .heart-icon {
    filter: drop-shadow(0 0 8px rgba(47, 237, 154, 0.95)) drop-shadow(0 2px 6px rgba(47, 237, 154, 0.55))
            saturate(4) brightness(0.92);
    transition: filter 0.2s ease;
}

.favorite-btn .heart-icon {
    transition: filter 0.2s ease;
}

.property-price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-info {
    padding: 20px;
}

.property-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.property-location {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-gray);
    flex-wrap: nowrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.property-features span i {
    font-size: 11px;
}

.see-details-btn {
    width: 100%;
    background-color: #2FED9A;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.see-details-btn:hover {
    background-color: #26DD8A;
}

/* Services Section */
.services-section {
    background-color: var(--bg-white);
}

.services-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.services-text-section {
    display: flex;
    flex-direction: column;
}

.section-title .title-line {
    display: block;
}

.services-images-row {
    display: flex;
    gap: 20px;
}

.service-image-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    border: 3px solid #B1F0D2;
    width: 290px;
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.service-image-card .service-icon-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.service-image-card .service-icon {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-image-card .service-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.explore-network-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .services-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-images-row {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-image-card {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    
    .service-card {
        width: 100%;
        min-width: 0;
        height: 260px;
    }
}

@media (max-width: 767px) {
    .services-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .services-content-wrapper {
        margin-bottom: 32px;
    }
    
    .services-text-section .section-title {
        font-size: clamp(22px, 4.5vw, 28px);
    }
    
    .services-text-section .section-description {
        font-size: 15px;
    }
    
    .services-images-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-image-card {
        max-width: 100%;
        width: 100%;
        height: 260px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        overflow-x: visible;
        padding-bottom: 0;
    }
    
    .service-card {
        width: 100%;
        min-width: 0;
        height: 240px;
    }
    
    .service-name {
        font-size: 16px;
    }
    
    .explore-network-wrapper {
        margin-top: 28px;
    }
    
    .explore-network-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 479px) {
    .services-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .services-images-row {
        gap: 16px;
    }
    
    .service-image-card {
        height: 240px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        height: 220px;
    }
    
    .service-card .service-icon {
        max-height: 100px;
    }
    
    .explore-network-btn {
        max-width: 100%;
        font-size: 14px;
    }
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
}

.service-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    border: 3px solid #B1F0D2;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 290px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

.service-icon-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.service-icon {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.channel-partner-card {
    background-color: #F5E6D3 !important;
    background-image: none !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0;
    border-top: none;
}

.service-footer span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6B7280;
    text-transform: uppercase;
}

.service-arrow-btn {
    background: #2FED9A;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.service-arrow-btn:hover {
    background-color: #26DD8A;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-rating {
    color: #FBBF24;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.author-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.author-location {
    font-size: 14px;
    color: var(--text-gray);
}

/* Insights Section */
.insights-section {
    background-color: var(--bg-white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.insight-card {
    background: white;
    border-radius: 25px;
    border: 0.8px solid #F1F5F9;
    overflow: hidden;
    box-shadow: 0 0.8px 1.6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.insight-content {
    padding: 20px;
}

.insight-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

.insight-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.insight-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Instagram Section */
.instagram-section {
    background-color: var(--bg-white);
}

.instagram-follow-btn {
    background: linear-gradient(135deg, #DB2777 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.instagram-follow-btn:hover {
    background: linear-gradient(135deg, #BE185D 0%, #9333EA 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 39, 119, 0.4);
}

.instagram-feed {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.feed-nav-btn {
    display: none;
}

.feed-nav-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.instagram-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
    width: 100%;
}

.instagram-post {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PROPERTY DETAILS PAGE
   ============================================ */

.property-page {
    background: #E5F3F6;
}

.property-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.property-hero-section {
    padding: 20px 0 0;
}

.property-hero-card {
    background: #E2E8F0;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 24px;
}

.property-hero-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.property-hero-bottom-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
}

.property-thumbnails-row {
    display: flex;
    gap: 12px;
    flex: 1 1 auto;
}

.property-map-preview-card {
    flex: 0 0 220px;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.property-map-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-map-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748B;
    font-weight: 600;
}

.property-map-frame-wrapper {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 120px;
}

.property-map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.property-main-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.property-main-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.property-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.property-gallery-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.property-gallery-nav-left {
    left: 24px;
}

.property-gallery-nav-right {
    right: 24px;
}

.property-hero-top-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

/* Share / favourite: no white circle — image is the control */
.property-icon-btn {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 0;
}

.property-icon-btn img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.property-icon-btn.favorite-btn .heart-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.property-hero-photo-count {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(15, 23, 42, 0.85);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.property-thumbnails-row {
    display: flex;
    gap: 12px;
}

.property-thumb {
    flex: 0 0 90px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
}

.property-thumb.active {
    opacity: 1;
    outline: 2px solid #2FED9A;
}

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

.property-summary-section {
    padding: 32px 0 0;
}

.property-summary-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.property-summary-main {
    flex: 1;
}

.property-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.property-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.property-badge-featured {
    background: #F97373;
    color: #FFFFFF;
}

.property-badge-resale {
    background: #DCFCE7;
    color: #166534;
}

.property-summary-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.property-summary-location {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}

.property-summary-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.property-summary-spec .label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.property-summary-spec .value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.property-summary-actions {
    display: flex;
    gap: 12px;
}

.summary-primary-btn,
.summary-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
}

.summary-primary-btn span,
.summary-secondary-btn span {
    font-weight: 700;
}

.summary-primary-btn {
    padding: 10px 20px;
    height: 34px;
    background: #2FED9A;
    color: #020617;
    border: 1px solid #2FED9A;
}

.summary-primary-btn:hover {
    background: #28d889;
    border-color: #28d889;
}

.summary-primary-btn i {
    font-size: 9px;
}

.summary-secondary-btn {
    padding: 10.78px 20.78px;
    height: 37.56px;
    background: #FFFFFF;
    color: #020617;
    border: 1px solid #0F172A;
    text-decoration: none;
}

.summary-secondary-btn:hover {
    background: #F8FAFC;
}

.summary-secondary-btn i {
    font-size: 9px;
}

.property-price-card {
    width: 260px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    background: #FFFFFF;
    padding: 20px 24px;
    text-align: right;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9CA3AF;
}

.price-value {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 800;
    color: #16A34A;
}

.price-note {
    margin-top: 8px;
    font-size: 12px;
    color: #6B7280;
}

.property-detail-section {
    padding: 32px 0 0;
}

.property-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 24px;
}

.property-detail-card,
.property-amenities-card,
.owner-card {
    background: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #F1F5F9;
    padding: 32px 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.property-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2FED9A;
}

.property-detail-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.property-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    min-width: 0;
}

.detail-label {
    font-size: 13px;
    color: #6B7280;
    flex-shrink: 0;
}

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-align: right;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #F9FAFB;
    /* Rectangle-like chips */
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    color: #4B5563;
    text-align: center;
    width: 100%;
    min-width: 0;
    /* Allow long names to wrap instead of getting visually clipped */
    overflow-wrap: anywhere;
    word-break: break-word;
}

.amenity-pill i {
    flex-shrink: 0;
    font-size: 12px;
    color: #16A34A;
}

.amenity-pill .amenity-pill-text {
    min-width: 0;
    white-space: normal;
    display: block;
    line-height: 1.2;
}

.owner-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-owner-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.owner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.owner-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.owner-avatar i.owner-avatar-icon {
    font-size: 18px;
    color: #94A3B8;
}

.owner-avatar.has-avatar i.owner-avatar-icon {
    opacity: 0;
}

.owner-name {
    font-size: 20px;
    font-weight: 700;
}

.owner-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    margin-top: 4px;
    text-transform: uppercase;
}

.owner-badge i.owner-verified-icon {
    color: #94A3B8;
    font-size: 14px;
}

.owner-badge.is-verified {
    color: #16A34A;
}

.owner-badge.is-verified i.owner-verified-icon {
    color: #16A34A;
}

.enquiry-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.owner-enquiry-form .enquiry-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.owner-enquiry-form .enquiry-title .enquiry-title-icon {
    color: #2FED9A;
    font-size: 14px;
}

.owner-enquiry-form {
    background: #F8FAFC;
    border-radius: 28px;
    padding: 18px 16px;
}

.owner-enquiry-form .form-group {
    margin-bottom: 14px;
}

/* Read-only owner fields — display as data, not editable input */
.owner-enquiry-form .form-input[readonly] {
    background: #F1F5F9;
    border-color: #E2E8F0;
    color: #0F172A;
    cursor: default;
    font-weight: 500;
}

.owner-enquiry-form .form-input[readonly]:focus {
    outline: none;
    border-color: #E2E8F0;
    box-shadow: none;
}

.enquiry-toggle {
    display: flex;
    background: #EFF6FF;
    border-radius: 999px;
    padding: 3px;
}

.enquiry-toggle-btn {
    flex: 1;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 10px;
    cursor: pointer;
    color: #0F172A;
}

.enquiry-toggle-btn.active {
    background: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.35);
}

.owner-contact-btn {
    margin-top: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    color: #020617;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.property-recommend-section {
    padding: 40px 0 0;
}

/* ---- Map: tap hint overlay (mobile) ---- */
.map-tap-hint {
    display: none;
}

/* Always make map card clickable */
.property-map-preview-card {
    cursor: pointer;
    position: relative;
}

/* ---- Map app chooser bottom sheet ---- */
/* Property details — owner contact modal */
.owner-contact-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 1100;
}

.owner-contact-modal-backdrop.owner-contact-modal-open {
    display: block;
}

.owner-contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1101;
    padding: 16px;
    pointer-events: none;
}

.owner-contact-modal.owner-contact-modal-open {
    display: flex;
    pointer-events: auto;
}

.owner-contact-modal-inner {
    width: 100%;
    max-width: 400px;
    max-height: min(90vh, 560px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(241, 245, 249, 0.9);
    padding: 20px 20px 22px;
    pointer-events: auto;
}

.owner-contact-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.owner-contact-modal-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f172a;
}

.owner-contact-modal-close {
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    padding: 0 4px;
}

.owner-contact-modal-close:hover {
    color: #0f172a;
}

.owner-contact-modal-body {
    font-size: 14px;
    color: #334155;
}

.owner-contact-modal-empty,
.owner-contact-modal-loading {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.owner-modal-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.owner-modal-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.owner-modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.owner-modal-field:last-child {
    border-bottom: none;
}

.owner-modal-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.owner-modal-value {
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
}

a.owner-modal-link {
    color: #047857;
    text-decoration: none;
}

a.owner-modal-link:hover {
    text-decoration: underline;
}

.property-summary-actions a.summary-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.map-chooser-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 300000;
    transition: opacity 0.25s ease;
    opacity: 0;
}

.map-chooser-backdrop.visible {
    opacity: 1;
}

.map-chooser-sheet {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300001;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 12px 20px max(24px, env(safe-area-inset-bottom)) 20px;
    box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-chooser-sheet.visible {
    transform: translateY(0);
}

.map-chooser-handle {
    width: 40px;
    height: 4px;
    background: #E2E8F0;
    border-radius: 999px;
    margin: 0 auto 18px;
}

.map-chooser-title {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 16px;
}

.map-chooser-options {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.map-chooser-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    background: #F8FAFC;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
    transition: background 0.15s, border-color 0.15s;
}

.map-chooser-btn:hover,
.map-chooser-btn:active {
    background: #EEF2FF;
    border-color: #818CF8;
}

.map-chooser-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.map-chooser-icon--apple {
    background: #000000;
    color: #ffffff;
}

.map-chooser-icon--google {
    background: #4285F4;
    color: #ffffff;
}

.map-chooser-cancel {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #F1F5F9;
    color: #EF4444;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.map-chooser-cancel:hover {
    background: #FEE2E2;
}

@media (max-width: 768px) {
    /* Show tap hint on mobile map card */
    .map-tap-hint {
        display: flex;
        position: absolute;
        inset: 0;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.28);
        border-radius: 8px;
        color: #fff;
        font-size: 20px;
        pointer-events: none;
    }

    .property-map-preview-card:active .map-tap-hint {
        background: rgba(15, 23, 42, 0.12);
    }
}

/* Desktop: show sheet in center instead of bottom */
@media (min-width: 769px) {
    .map-chooser-sheet {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 50%;
        width: 340px;
        border-radius: 24px;
        transform: translate(-50%, -40%) scale(0.95);
        opacity: 0;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .map-chooser-sheet.visible {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* ---- Share toast ---- */
.share-toast {
    position: absolute;
    top: 72px;
    right: 20px;
    background: #0F172A;
    color: #2FED9A;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}
.share-toast.visible { opacity: 1; }

/* ---- Global site toast (replaces window.alert) ---- */
.hunt-site-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 24px));
    max-width: min(92vw, 440px);
    padding: 14px 22px;
    border-radius: 14px;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    z-index: 100010;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.hunt-site-toast--visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.hunt-site-toast--success {
    background: #059669;
    color: #fff;
}
.hunt-site-toast--error {
    background: #DC2626;
    color: #fff;
}

/* ---- Property page: tablet ---- */
@media (max-width: 1024px) {
    .property-detail-layout {
        grid-template-columns: 1fr;
    }

    .property-price-card {
        width: 200px;
        flex-shrink: 0;
    }

    .property-hero-card {
        border-radius: 28px;
        padding: 16px;
    }

    .property-main-image {
        height: 340px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ---- Property page: mobile ---- */
@media (max-width: 768px) {
    .property-main {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    /* Hero card */
    .property-hero-card {
        border-radius: 20px;
        padding: 12px;
    }

    .property-main-image {
        height: 240px;
    }

    .property-main-image-wrapper {
        border-radius: 16px;
    }

    .property-gallery-nav {
        width: 36px;
        height: 36px;
    }

    .property-gallery-nav-left  { left: 10px; }
    .property-gallery-nav-right { right: 10px; }

    /* Thumbnails + map side by side in one row */
    .property-hero-bottom-row {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .property-thumbnails-row {
        flex-wrap: wrap;
        gap: 8px;
        flex: 1 1 auto;
    }

    /* Thumbnail size on mobile */
    .property-thumb {
        flex: 0 0 72px;
        height: 72px;
    }

    /* Map card: same fixed size as one thumbnail */
    .property-map-preview-card {
        flex: 0 0 72px;
        width: 72px;
        min-width: 0;
        padding: 4px;
        border-radius: 12px;
    }

    .property-map-label-row {
        display: none; /* hide "LOCATION MAP" label — no room at this size */
    }

    .property-map-frame-wrapper {
        height: 64px;
        border-radius: 8px;
    }

    /* Summary card: stack price below details */
    .property-summary-card {
        flex-direction: column;
        gap: 16px;
    }

    .property-price-card {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 20px;
    }

    .price-value {
        font-size: 22px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .property-summary-title { font-size: 18px; }

    .property-summary-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .property-summary-actions {
        flex-direction: column;
        gap: 10px;
    }

    .property-summary-actions .summary-primary-btn,
    .property-summary-actions .summary-secondary-btn {
        width: 100%;
        height: 44px;
        font-size: 13px;
        justify-content: center;
    }

    /* Detail grid: single column, stack label above value for full-width text */
    .property-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .property-detail-card .detail-row {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .property-detail-card .detail-value {
        text-align: left;
    }

    .property-detail-card,
    .property-amenities-card,
    .owner-card {
        border-radius: 20px;
        padding: 20px 16px;
        min-width: 0;
        overflow: visible;
    }

    /* Amenities: 2 columns, responsive pills */
    .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        min-width: 0;
        align-items: stretch;
    }

    .property-amenities-card .amenity-pill {
        padding: 10px 10px;
        font-size: 11px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 56px;
    }

    .property-amenities-card .amenity-pill i {
        font-size: 13px;
    }

    .property-amenities-card .amenity-pill .amenity-pill-text {
        text-align: center;
    }

    .property-detail-left {
        min-width: 0;
    }

    /* Owner/enquiry form full width */
    .property-detail-right {
        width: 100%;
    }
}

/* ---- Property page: small phones ---- */
@media (max-width: 480px) {
    .property-hero-card {
        padding: 8px;
        border-radius: 16px;
    }

    .property-main-image {
        height: 200px;
    }

    .property-hero-section { padding: 12px 0 0; }
    .property-summary-section { padding: 16px 0 0; }
    .property-detail-section  { padding: 16px 0 0; }

    .property-detail-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .property-detail-card,
    .property-amenities-card,
    .owner-card {
        padding: 16px 14px;
    }

    .property-summary-spec-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .property-badges { flex-wrap: wrap; }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .property-amenities-card .amenity-pill {
        font-size: 10px;
        padding: 8px 8px;
        min-height: 50px;
    }

    .property-recommend-section { padding: 24px 0 0; }
}

/* ============================================
   CHANNEL PARTNER PAGE
   ============================================ */

.channel-page {
    background: #F1F5F9;
}

/* Channel page: hero from top of page, header floats over it */
.channel-page .header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: max(20px, env(safe-area-inset-top, 0px));
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    background: transparent;
}

.channel-page .channel-main {
    padding-top: 0 !important;
    padding-bottom: 80px;
}

/* White floating pill bar over hero */
.channel-page .main-header .container {
    background: #FFFFFF;
    border-radius: 9999px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    max-width: 1320px;
}

.channel-hero-section {
    position: relative;
    height: 460px;
    overflow: hidden;
    margin-top: 0;
}

.channel-hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.channel-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-hero-overlay {
    display: none;
}

.channel-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.back-to-listings-btn {
    position: absolute;
    left: 0;
    top: 48px;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.back-to-listings-btn i {
    font-size: 12px;
}

.channel-hero-text {
    margin-top: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge: dark green pill with light green text */
.channel-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: #065F46;
    color: #A7F3D0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.channel-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 16px;
}

/* "Program" – horizontal gradient: bright green to cyan/teal */
.channel-title-gradient {
    background: linear-gradient(90deg, #2FED9A 0%, #22D3EE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.channel-hero-subtitle {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0;
}

.channel-content-section {
    margin-top: 32px;
}

/* Channel Partner — tablets / phones: full-width image, wrapping title, page scrolls */
@media (max-width: 1024px) {
    .channel-hero-section {
        height: auto;
        min-height: 0;
        overflow: visible;
        background: #0f172a;
    }

    .channel-hero-background {
        position: relative;
        height: auto;
        min-height: 0;
    }

    .channel-hero-image {
        width: 100%;
        height: auto;
        max-height: min(58vh, 520px);
        object-fit: contain;
        object-position: center top;
        display: block;
        vertical-align: top;
    }

    .channel-hero-content {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 24px 16px 40px;
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, #0f172a 100%);
    }

    .channel-hero-text {
        max-width: 100%;
        width: 100%;
        align-items: center;
        margin-top: 12px;
    }

    .channel-hero-title {
        font-size: clamp(22px, 6vw, 44px);
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .channel-hero-subtitle {
        max-width: 100%;
        font-size: 15px;
        padding: 0 4px;
    }

    .channel-content-section {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .channel-hero-title {
        font-size: clamp(20px, 6.5vw, 36px);
    }

    .channel-main {
        padding-bottom: 48px;
    }

    .channel-page .container {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 480px) {
    .channel-hero-image {
        max-height: min(50vh, 380px);
    }

    .channel-hero-title {
        font-size: clamp(18px, 6vw, 28px);
    }

    .channel-hero-content {
        padding-bottom: 32px;
    }
}

.channel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
}

.channel-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel-right-column {
    display: flex;
    align-items: stretch;
}

.channel-card {
    border-radius: 40px;
    padding: 32px;
    border: 1px solid #F1F5F9;
    box-shadow:
        0 10px 25px -12px rgba(0, 0, 0, 0.25),
        0 4px 10px -6px rgba(0, 0, 0, 0.10);
}

.channel-card.light {
    background: #FFFFFF;
}

.channel-card.dark {
    background: #0F172A;
    color: #F9FAFB;
}

.channel-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F172A;
}

.channel-card.dark .channel-card-title {
    color: #FFFFFF;
}

.channel-card-body {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.channel-card.dark .channel-card-body {
    color: #E5E7EB;
}

.channel-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.channel-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    font-size: 14px;
}

.channel-benefits-list {
    margin: 10px 0 16px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
}

.channel-benefits-list li::marker {
    color: #2FED9A;
}

.channel-card-footer {
    font-size: 13px;
    color: #D1FAE5;
}

.channel-email {
    color: #2FED9A;
    font-weight: 600;
}

.channel-form-card {
    background: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #F1F5F9;
    padding: 40px;
    box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.35);
    width: 100%;
}

.channel-form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2FED9A;
    margin-bottom: 8px;
}

.channel-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.channel-form-subtitle {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 20px;
}

.channel-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.channel-form .form-group {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.channel-select {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #F9FAFB;
}

.channel-textarea {
    resize: vertical;
    min-height: 110px;
}

.channel-submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    color: #020617;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 25px 50px -20px rgba(47, 237, 154, 0.7);
}

.channel-submit-btn i {
    font-size: 14px;
}

.channel-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Feedback banners inside channel partner form */
.cp-banner[hidden] {
    display: none !important;
}

.cp-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cp-banner i {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
}

.cp-banner--success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.cp-banner--success i {
    color: #059669;
}

.cp-banner--error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.cp-banner--error i {
    color: #DC2626;
}

@media (max-width: 1024px) {
    .channel-layout {
        grid-template-columns: 1fr;
    }

    .channel-content-section {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .channel-page .channel-main {
        padding-top: 0 !important;
        padding-bottom: 48px;
    }

    .channel-form-card {
        padding: 28px 24px;
        border-radius: 32px;
    }

    .channel-card {
        padding: 24px;
        border-radius: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========== Investors Relation Page ========== */
.investors-main {
    padding-top: 120px;
    padding-bottom: 80px;
}

.investors-hero-section {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investors-hero-background {
    position: absolute;
    inset: 0;
}

.investors-hero-image {
    position: absolute;
    inset: 0;
    background-color: #0F172A;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.5);
}

.investors-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.investors-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.investors-hero-content .back-to-listings-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.investors-hero-content .back-to-listings-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.investors-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 24px;
}

.investors-hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2FED9A;
}

.investors-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 16px 0 12px;
}

.investors-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
    font-style: italic;
}

.investors-content-section {
    padding: 60px 0 40px;
    background: #F9FAFB;
}

.investors-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
}

.investors-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.investors-title-accent {
    width: 4px;
    height: 28px;
    background: #2FED9A;
    border-radius: 2px;
    display: inline-block;
}

.investors-intro-text {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

.investors-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.investors-feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.investors-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(47, 237, 154, 0.15);
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.investors-card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #0F172A;
    margin-bottom: 8px;
}

.investors-card-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}

.investors-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.investors-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.investors-form-subtitle {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 24px;
}

.investors-form .form-group {
    margin-bottom: 16px;
}

.investors-form .form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #4B5563;
    margin-bottom: 6px;
}

.investors-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.2s;
}

.investors-form .form-input:focus {
    outline: none;
    border-color: #2FED9A;
}

.investors-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.investors-textarea {
    resize: vertical;
    min-height: 100px;
}

.investors-submit-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 10px;
    border: none;
    background: #2FED9A;
    color: #020617;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(47, 237, 154, 0.4);
}

.investors-submit-btn:hover {
    background: #22d489;
}

.investors-form-contact {
    font-size: 12px;
    color: #6B7280;
    margin-top: 16px;
    text-align: center;
}

.investors-bottom-section {
    margin-top: 48px;
}

.investors-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.investors-bottom-card {
    border-radius: 20px;
    padding: 32px;
}

.investors-bottom-card.investors-card-dark {
    background: #0F172A;
    color: #F9FAFB;
}

.investors-bottom-card.investors-card-light {
    background: #FFFFFF;
    color: #1F2937;
    border: 1px solid #E5E7EB;
}

.investors-bottom-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(47, 237, 154, 0.2);
    color: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.investors-bottom-icon.investors-icon-orange {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

.investors-bottom-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.investors-bottom-card.investors-card-dark .investors-bottom-title {
    color: #FFFFFF;
}

.investors-bottom-title.investors-title-orange .investors-title-accent,
.investors-accent-orange {
    background: #F97316;
}

.investors-bottom-text {
    font-size: 14px;
    line-height: 1.7;
}

.investors-bottom-card.investors-card-dark .investors-bottom-text {
    color: #E5E7EB;
}

.investors-bottom-card.investors-card-light .investors-bottom-text {
    color: #4B5563;
}

@media (max-width: 1024px) {
    .investors-layout {
        grid-template-columns: 1fr;
    }

    .investors-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .investors-main {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .investors-hero-title {
        font-size: 32px;
    }

    .investors-hero-subtitle {
        font-size: 14px;
    }

    .investors-cards-grid {
        grid-template-columns: 1fr;
    }

    .investors-form-card {
        padding: 24px;
    }
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    display: none;
}

.instagram-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.instagram-text {
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .instagram-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-posts {
        grid-template-columns: 1fr;
    }
}

/* ========== Vaastu Pages Shared Background ========== */
.vaastu-main,
.vaastu-manual-main,
.vaastu-result-main {
    padding-top: 140px;
    padding-bottom: 80px;
    background:
        linear-gradient(0deg, #FFFFFF, #FFFFFF),
        linear-gradient(0deg, #ECFDF5, #ECFDF5),
        radial-gradient(141.42% 141.42% at 100% 100%, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 40%),
        radial-gradient(141.42% 141.42% at 0% 0%, rgba(47, 237, 154, 0.10) 0%, rgba(47, 237, 154, 0) 40%);
}

/* ========== Vaastu AI Page ========== */

.vaastu-hero-section {
    padding-bottom: 40px;
}

.vaastu-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.vaastu-logo-wrapper {
    display: flex;
    justify-content: center;
}

.vaastu-logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px -20px rgba(15, 23, 42, 0.9);
}

.vaastu-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vaastu-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #020617;
}

.vaastu-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
}

.vaastu-hero-description {
    max-width: 540px;
    font-size: 14px;
    color: #6B7280;
}

.vaastu-mode-switch {
    margin-top: 8px;
    width: 100%;
    max-width: 640px;
    background: rgba(248, 250, 252, 0.9);
    border-radius: 64px;
    padding: 16px 32px;
    border: 1px solid #ECFDF5;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.03),
        0 45px 81px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.vaastu-mode-pill {
    position: relative;
    height: 72px;
    border-radius: 56px;
    background: #F8FAFC;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border: 1px solid transparent;
}

.vaastu-mode-pill-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    gap: 16px;
}

.vaastu-mode-pill-left {
    justify-content: flex-end;
}

.vaastu-mode-pill-right {
    justify-content: flex-start;
}

.vaastu-mode-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748B;
}

.vaastu-mode-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.vaastu-mode-icon-scan {
    background: rgba(47, 237, 154, 0.08);
    color: #16A34A;
}

.vaastu-mode-icon-manual {
    background: rgba(248, 250, 252, 0.9);
    color: #2FED9A;
}

.vaastu-mode-underline {
    height: 2px;
    max-width: 56px;
    flex: 1;
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.4), rgba(148, 163, 184, 0.8));
    border-radius: 999px;
    align-self: flex-end;
    margin-bottom: 8px;
}

.vaastu-mode-active {
    background: #020617;
    border-color: #16A34A;
}

.vaastu-mode-active .vaastu-mode-label {
    color: #FFFFFF;
}

.vaastu-mode-toggle {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2FED9A, #2FED9A);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px -24px rgba(16, 185, 129, 1);
}

.vaastu-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2FED9A;
    font-size: 16px;
}

.vaastu-modes-section {
    padding: 10px 0 80px;
}

.vaastu-section-kicker {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6B7280;
    margin-bottom: 24px;
}

.vaastu-modes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.vaastu-mode-card {
    border-radius: 32px;
    padding: 32px 32px 28px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 25px 60px -30px rgba(15, 23, 42, 0.9);
}

.vaastu-mode-card-dark {
    background: #020617;
    color: #E5E7EB;
}

.vaastu-mode-card-light {
    background: #F9FAFB;
    color: #111827;
    box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.55);
}

.vaastu-mode-card-header {
    margin-bottom: 18px;
}

.vaastu-mode-pill-label {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.2);
    color: #BBF7D0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vaastu-mode-card-header-light .vaastu-mode-pill-label {
    background: rgba(15, 23, 42, 0.05);
    color: #6B7280;
}

.vaastu-mode-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vaastu-mode-card-title-dark {
    color: #020617;
}

.vaastu-mode-card-text {
    font-size: 14px;
    color: #CBD5F5;
    margin-bottom: 18px;
}

.vaastu-mode-card-text-dark {
    color: #4B5563;
}

.vaastu-mode-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 13px;
    color: #E5E7EB;
}

.vaastu-mode-list li + li {
    margin-top: 6px;
}

.vaastu-mode-list-light {
    color: #4B5563;
}

.vaastu-primary-btn,
.vaastu-secondary-btn {
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.vaastu-primary-btn {
    background: #2FED9A;
    color: #020617;
    box-shadow: 0 22px 40px -22px rgba(16, 185, 129, 1);
}

.vaastu-primary-btn i,
.vaastu-secondary-btn i {
    font-size: 14px;
}

.vaastu-secondary-btn {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.30);
}

@media (max-width: 1024px) {
    .vaastu-main {
        padding-top: 120px;
    }

    .vaastu-modes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vaastu-main {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .vaastu-hero-title {
        font-size: 30px;
    }

    .vaastu-mode-switch {
        padding: 16px 20px;
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .vaastu-mode-pill {
        height: 60px;
        justify-content: center;
        padding: 0 20px;
    }
}

/* ========== Vaastu Scan Upload Page ========== */
.vaastu-scan-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.vaastu-scan-header {
    margin-bottom: 24px;
}

.vaastu-scan-kicker {
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
}

.vaastu-upload-card {
    margin-top: 16px;
    border-radius: 56px;
    border: 2px dashed rgba(47, 237, 154, 0.7);
    background: rgba(15, 23, 42, 0.01);
    box-shadow: 0 40px 100px -40px rgba(15, 23, 42, 0.40);
}

.vaastu-upload-inner {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 32px;
    gap: 18px;
}

.vaastu-upload-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022C22;
    font-size: 22px;
    box-shadow: 0 25px 50px -20px rgba(47, 237, 154, 0.9);
}

.vaastu-upload-title {
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #020617;
}

.vaastu-upload-subtitle {
    font-size: 14px;
    color: #6B7280;
}

.vaastu-upload-btn {
    margin-top: 8px;
    border-radius: 999px;
    border: none;
    padding: 12px 28px;
    background: #2FED9A;
    color: #022C22;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 40px -20px rgba(47, 237, 154, 0.90);
}

@media (max-width: 768px) {
    .vaastu-upload-inner {
        min-height: 260px;
        padding: 40px 20px;
    }

    .vaastu-upload-title {
        font-size: 22px;
    }
}

/* ========== Vaastu Manual Page ========== */
.vaastu-manual-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

/* ========== Vaastu Analysis Page ========== */
.vaastu-analysis-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.vaastu-exit-link {
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
    cursor: pointer;
}

.vaastu-exit-link i {
    font-size: 11px;
}

.vaastu-analysis-title {
    margin-top: 12px;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #020617;
}

.vaastu-assistant-card,
.vaastu-phase-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 24px 28px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 30px 80px -40px rgba(15, 23, 42, 0.24),
        0 2px 4px rgba(15, 23, 42, 0.06);
}

.vaastu-phase-card {
    margin-top: 16px;
}

.vaastu-assistant-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vaastu-assistant-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #F2F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    font-size: 13px;
}

.vaastu-assistant-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
}

.vaastu-assistant-intro {
    font-size: 14px;
    color: #111827;
    margin-bottom: 10px;
}

.vaastu-assistant-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6B7280;
    margin-bottom: 8px;
}

.vaastu-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #4B5563;
}

.vaastu-steps-list li + li {
    margin-top: 4px;
}

.vaastu-step-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2FED9A;
    margin-right: 8px;
}

.vaastu-phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.vaastu-phase-pill {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: #ECFDF5;
    color: #15803D;
}

.vaastu-phase-status {
    font-size: 11px;
    font-weight: 600;
    color: #16A34A;
}

.vaastu-phase-text {
    font-size: 14px;
    color: #111827;
    margin-bottom: 4px;
}

.vaastu-phase-subtext {
    font-size: 12px;
    color: #6B7280;
}

.vaastu-orientation-card {
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 32px;
    padding: 24px 28px 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 30px 80px -40px rgba(15, 23, 42, 0.24),
        0 2px 4px rgba(15, 23, 42, 0.06);
}

.vaastu-orientation-header {
    margin-bottom: 16px;
}

.vaastu-orientation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
}

.vaastu-orientation-subtitle {
    font-size: 13px;
    color: #6B7280;
}

.vaastu-orientation-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 24px;
    align-items: center;
}

.vaastu-floorplan-placeholder {
    border-radius: 24px;
    background: #F9FAFB;
    border: 1px dashed #CBD5E1;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaastu-floorplan-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.vaastu-orientation-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vaastu-orientation-btn {
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.vaastu-orientation-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
}

.vaastu-orientation-hint {
    display: block;
    font-size: 12px;
    color: #6B7280;
}

.vaastu-orientation-btn-active {
    border-color: #2FED9A;
    background: #ECFDF5;
    box-shadow: 0 10px 25px -12px rgba(47, 237, 154, 0.50);
}

.vaastu-cardinal-card {
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 32px;
    padding: 24px 28px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 30px 80px -40px rgba(15, 23, 42, 0.24),
        0 2px 4px rgba(15, 23, 42, 0.06);
}

.vaastu-cardinal-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vaastu-cardinal-btn {
    padding: 14px 10px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0F172A;
    cursor: pointer;
}

.vaastu-analyzing-card {
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 32px;
    padding: 20px 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow:
        0 24px 60px -32px rgba(15, 23, 42, 0.35),
        0 2px 4px rgba(15, 23, 42, 0.06);
}

.vaastu-loader-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.vaastu-loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(47, 237, 154, 0.25);
    border-top-color: #2FED9A;
    animation: vaastuSpin 0.9s linear infinite;
}

.vaastu-loader-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #047857;
    text-transform: uppercase;
}

.vaastu-result-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F2F9FF;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 10px 14px;
    width: fit-content;
    margin: 10px 0 14px;
}

@keyframes vaastuSpin {
    to {
        transform: rotate(360deg);
    }
}

.vaastu-chat-bar {
    margin-top: 28px;
    border-radius: 40px;
    background: #F2F9FF;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.vaastu-chat-input {
    border: none;
    flex: 1;
    font-size: 13px;
    color: #111827;
    outline: none;
    background: transparent;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.vaastu-chat-input::placeholder {
    color: #9CA3AF;
}

.vaastu-chat-send {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    border: none;
    background: #020617;
    color: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 4px 6px -4px rgba(0, 0, 0, 0.10),
        0 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.vaastu-chat-send i {
    font-size: 14px;
}

.vaastu-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 0;
}

.vaastu-chat-bubble {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 13px;
    white-space: pre-wrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.vaastu-chat-bubble-user {
    background: #2FED9A;
    color: #022C22;
    align-self: flex-end;
}

.vaastu-chat-bubble-ai {
    background: #F2F9FF;
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.10);
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .vaastu-orientation-body {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .vaastu-analysis-section {
        padding-top: 110px;
        padding-bottom: 60px;
    }
}

.vaastu-manual-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: flex-start;
}

.vaastu-manual-left {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 32px 32px 28px;
    box-shadow:
        0 45px 81px rgba(0, 0, 0, 0.01),
        0 2px 4px rgba(15, 23, 42, 0.06);
}

.vaastu-manual-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.vaastu-back-link {
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
    cursor: pointer;
}

.vaastu-back-link i {
    font-size: 11px;
}

.vaastu-manual-title-block {
    text-align: right;
}

.vaastu-manual-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #020617;
}

.vaastu-manual-subtitle {
    font-size: 12px;
    color: #94A3B8;
}

.vaastu-rooms-grid {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vaastu-room-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
    gap: 16px;
    align-items: stretch;
}

.vaastu-room-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 32px;
    background: #FEF2F2;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(15, 23, 42, 0.06);
}

.vaastu-room-icon {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vaastu-room-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vaastu-room-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0F172A;
}

.vaastu-room-directions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 32px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.01),
        0 2px 6px rgba(15, 23, 42, 0.06);
}

.vaastu-dir-chip {
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid #E5E7EB;
    background: #F8FAFC;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
    cursor: pointer;
    white-space: nowrap;
}

.vaastu-dir-chip-active {
    background: #022C22;
    border-color: #16A34A;
    color: #BBF7D0;
}

.vaastu-manual-right {
    display: flex;
    justify-content: flex-start;
}

.vaastu-diagnostics-card {
    width: 100%;
    max-width: 360px;
    background: radial-gradient(circle at top left, rgba(47, 237, 154, 0.25), transparent 50%), #020617;
    border-radius: 32px;
    padding: 28px 28px 24px;
    color: #E5E7EB;
    box-shadow: 0 45px 81px rgba(0, 0, 0, 0.35);
}

.vaastu-diagnostics-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vaastu-diagnostics-text {
    font-size: 13px;
    color: #CBD5F5;
    margin-bottom: 20px;
}

.vaastu-diagnostics-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
}

.vaastu-metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vaastu-metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
}

.vaastu-metric-value {
    font-size: 14px;
    font-weight: 600;
}

.vaastu-metric-pill {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.vaastu-diagnostics-btn {
    width: 100%;
    border-radius: 999px;
    padding: 14px 20px;
    border: none;
    background: linear-gradient(135deg, #2FED9A, #16A34A);
    color: #020617;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 25px 60px -26px rgba(16, 185, 129, 1);
    text-transform: uppercase;
}

.vaastu-diagnostics-btn i {
    font-size: 14px;
}

.vaastu-diagnostics-footnote {
    margin-top: 14px;
    font-size: 11px;
    color: #94A3B8;
}

@media (max-width: 1024px) {
    .vaastu-manual-layout {
        grid-template-columns: minmax(0, 1.6fr);
    }

    .vaastu-manual-right {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .vaastu-manual-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .vaastu-manual-layout {
        grid-template-columns: 1fr;
    }

    .vaastu-room-row {
        grid-template-columns: 1fr;
    }

    .vaastu-room-directions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vaastu-manual-left {
        padding: 24px 20px;
    }

    .vaastu-diagnostics-card {
        max-width: 100%;
    }
}

/* ========== Vaastu Result Page ========== */
.vaastu-result-section {
    padding-bottom: 60px;
}

.vaastu-result-card {
    margin-top: 24px;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 32px 40px 40px;
    box-shadow:
        0 60px 120px -40px rgba(15, 23, 42, 0.30),
        0 2px 6px rgba(15, 23, 42, 0.06);
}

.vaastu-result-header {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.vaastu-score-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vaastu-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 10px solid #DCFCE7;
    border-top-color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vaastu-score-value {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #022C22;
}

.vaastu-score-max {
    font-size: 14px;
    color: #6B7280;
}

.vaastu-score-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
}

.vaastu-score-cta {
    border-radius: 999px;
    border: none;
    padding: 10px 22px;
    background: #2FED9A;
    color: #022C22;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 18px 40px -24px rgba(16, 185, 129, 1);
}

.vaastu-directional-section,
.vaastu-room-scores,
.vaastu-recommendations {
    margin-top: 32px;
}

.vaastu-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
}

.vaastu-direction-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vaastu-direction-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.vaastu-direction-icon {
    width: 36px;
    height: 36px;
    border-radius: 16px;
    background: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    flex-shrink: 0;
}

.vaastu-direction-icon i {
    font-size: 16px;
}

.vaastu-direction-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vaastu-direction-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #020617;
}

.vaastu-direction-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}

.vaastu-direction-text {
    font-size: 13px;
    color: #4B5563;
}

.vaastu-room-score-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vaastu-room-score-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 19px 20px;
    border-radius: 16px;
    background: #F2F9FF;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vaastu-room-score-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.vaastu-room-score-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vaastu-room-score-name {
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
}

.vaastu-room-score-tag {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.vaastu-room-score-tag-good {
    background: #DCFCE7;
    color: #166534;
}

.vaastu-room-score-tag-medium {
    background: #FEF9C3;
    color: #854D0E;
}

.vaastu-room-score-bar {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #E5E7EB;
    overflow: hidden;
}

.vaastu-room-score-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2FED9A, #16A34A);
}

.vaastu-room-score-fill-medium {
    background: linear-gradient(90deg, #FACC15, #D97706);
}

.vaastu-room-score-value {
    font-size: 12px;
    color: #4B5563;
}

.vaastu-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vaastu-recommendation-card {
    padding: 24px;
    border-radius: 32px;
    background: #F2F9FF;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 210px;
}

.vaastu-recommendation-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0F172A;
}

.vaastu-recommendation-text {
    font-size: 12px;
    color: #4B5563;
}

/* Result footer actions */
.vaastu-result-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.vaastu-report-btn,
.vaastu-ask-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    border: none;
}

.vaastu-report-btn {
    background: #FFFFFF;
    color: #020617;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.vaastu-ask-ai-btn {
    background: #2FED9A;
    color: #022C22;
    box-shadow: 0 25px 60px -24px rgba(47, 237, 154, 0.90);
}

.vaastu-result-chat-wrapper {
    margin: 24px auto 0;
    max-width: 768px;
}

/* Defect diagnostics */
.vaastu-defects {
    margin-top: 32px;
}

.vaastu-defects-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B91C1C;
}

.vaastu-defects-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #FEE2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B91C1C;
    font-size: 11px;
}

.vaastu-defect-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vaastu-defect-card {
    padding: 24px;
    border-radius: 24px;
    background: #F2F9FF;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vaastu-defect-heading {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 6px;
}

.vaastu-defect-text {
    font-size: 13px;
    color: #4B5563;
}

/* Positive aspects */
.vaastu-positives {
    margin-top: 32px;
}

.vaastu-positives-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #15803D;
}

.vaastu-positives-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15803D;
    font-size: 11px;
}

.vaastu-positive-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vaastu-positive-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
    background: #F2F9FF;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vaastu-positive-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    background: #F9FAFB;
    flex-shrink: 0;
}

.vaastu-positive-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vaastu-positive-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vaastu-positive-heading {
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
}

.vaastu-positive-text {
    font-size: 12px;
    color: #4B5563;
}

@media (max-width: 1024px) {
    .vaastu-result-main {
        padding-top: 120px;
    }

    .vaastu-result-card {
        padding: 24px 24px 32px;
        border-radius: 32px;
    }

    .vaastu-room-score-row {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 8px;
    }

    .vaastu-recommendation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vaastu-result-main {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .vaastu-recommendation-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* Footer */
.main-footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-top-section {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    align-items: start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    background-color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
}

.logo-text-white {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-green);
}

.app-downloads {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-download-link img {
    height: 40px;
    width: auto;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
    width: 100%;
}

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

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-link-list a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: var(--primary-green);
}

.footer-link-list .contact-item {
    color: #9CA3AF;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
}

.footer-link-list .contact-item i {
    color: var(--primary-green);
}

.newsletter-section {
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
    width: 100%;
}

.newsletter-description {
    color: #9CA3AF;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 0;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 15px;
}

.newsletter-input::placeholder {
    color: #6B7280;
}

.newsletter-submit-btn {
    background-color: #2FED9A;
    color: #020617;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 20px 0 rgba(47, 237, 154, 0.3);
}

.newsletter-submit-btn:hover {
    background-color: #16A34A;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    color: #9CA3AF;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--primary-green);
}

.footer-legal-links .rera-link {
    color: var(--primary-green);
}

.footer-legal-links .rera-link:hover {
    color: #16A34A;
}

.footer-bottom .catalyst-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom .catalyst-link:hover {
    color: #16A34A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid,
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header + mobile drawer: layout controlled in @media (max-width: 1023px) above */

    .hero-title {
        font-size: 36px;
    }

    /* Hero search rows: layout handled in .hero-search-panel @ 767px rules */

    .section-header {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .projects-grid,
    .properties-grid,
    .services-grid,
    .testimonials-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* Register Page */
.register-page {
    background-color: #FFFFFF;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.register-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #FFFFFF;
}

.register-card {
    position: relative;
    width: 822px;
    height: 800px;
    background-color: #FFFFFF;
    border-radius: 70px;
    box-shadow: 12px 24px 119.4px 7px rgba(0, 0, 0, 0.25);
    display: flex;
    overflow: hidden;
}

.register-card-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.register-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.register-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.register-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.register-card-right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

/* Home Loan / Real Estate Calculators Page */
.loan-page {
    background: transparent !important;
    min-height: 100vh;
}

.loan-main {
    padding-top: 140px;
    padding-bottom: 80px;
}

.calculator-hero-section {
    padding-bottom: 40px;
}

.calculator-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.calculator-hero-word {
    color: #020617;
}

.calculator-hero-highlight {
    color: #2FED9A;
}

.calculator-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 640px;
    margin-bottom: 24px;
}

.loan-page .calculator-tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1312px;
    height: 85.6px;
    gap: 3.5px;
    padding: 4.8px 5.79px 4.8px 3.25px;
    border-radius: 40px;
    box-sizing: border-box;
    background: var(--color-white-80, #FFFFFFCC);
    border: none;
    border-top: 1px solid var(--color-grey-91, #E2E8F0);
    box-shadow:
        0px 2px 4px -2px #0000001A,
        0px 4px 6px -1px #0000001A;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    margin-bottom: 28px;
}

.loan-page .calculator-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 150px;
    height: auto;
    padding: 16px 16px 16px 18.5px;
    border-radius: 28.8px;
    border: none;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6B7280;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.loan-page .calculator-tab:hover:not(.calculator-tab-active) {
    background: rgba(15, 23, 42, 0.06);
    color: #374151;
}

.loan-page .calculator-tab .calc-tab-icon-box i {
    line-height: 1;
}

/* .calculator-tab-dot replaced by .calc-tab-icon-box */

.loan-page .calculator-tab-active {
    background: #020617;
    color: #F9FAFB;
    box-shadow: 0px 24px 50px -12px rgba(15, 23, 42, 0.9);
    border-radius: 28.8px;
}

/* ── Tab icon box: 40×40 rounded square, green + glow when active ── */
.calc-tab-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.08);
    color: #6B7280;
    font-size: 15px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* inactive tab hover */
.loan-page .calculator-tab:hover:not(.calculator-tab-active) .calc-tab-icon-box {
    background: rgba(47, 237, 154, 0.12);
    color: #2FED9A;
}

/* active tab icon box — green fill + glow */
.loan-page .calculator-tab-active .calc-tab-icon-box {
    background: #2FED9A;
    color: #020617;
    box-shadow:
        0px 0px 0px 0px rgba(47, 237, 154, 0),
        0px 8px 10px -6px rgba(47, 237, 154, 0.55),
        0px 0px 18px 2px rgba(47, 237, 154, 0.35);
}

.calc-tab-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
}

.calculator-layout {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1.5fr);
    gap: 28px;
    align-items: flex-start;
}

.calculator-sidebar {
    background: #020617;
    color: #E5E7EB;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.6),
        0px 0px 0px 1px rgba(15, 23, 42, 0.8);
    padding: 20px 0;
    overflow: hidden;
}

.calculator-sidebar-header {
    padding: 0 24px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator-sidebar-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6B7280;
}

.calculator-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    margin: 4px 0 0;
}

.calculator-sidebar-toggle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #F9FAFB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calculator-topic-list {
    list-style: none;
    margin: 0;
    padding: 8px;
}

.calculator-topic-item {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1.5;
    color: #9CA3AF;
    cursor: pointer;
}

.calculator-topic-item + .calculator-topic-item {
    margin-top: 6px;
}

.calculator-topic-item-active {
    background: #F9FAFB;
    color: #020617;
}

.calculator-content-card {
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.12),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 26px 32px 28px;
}

.calculator-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.calculator-content-title {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.calculator-key-heading {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.calculator-bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calculator-bullet-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: #4B5563;
}

.calculator-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2FED9A;
}

.calculator-content-footer {
    margin-top: 22px;
}

/* Loan Eligibility Card */
.eligibility-card {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    overflow: hidden;
}

.eligibility-left,
.eligibility-right {
    padding: 26px 32px 28px;
}

.eligibility-left {
    background: #F9FAFB;
    border-right: 1px solid #E5E7EB;
}

.eligibility-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

/* Section heading label — Figma spec: Poppins 900, 20px, lh 28px, ls -0.5px, #1A1A1A, Uppercase */
.eligibility-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #1A1A1A;
    vertical-align: middle;
}

.eligibility-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2FED9A;
}

.eligibility-form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eligibility-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.eligibility-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.eligibility-reset-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6B7280;
    cursor: pointer;
}

.eligibility-right {
    background: #020617;
    color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.eligibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
    max-width: max-content;
}

.eligibility-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 6px 0;
}

.eligibility-amount {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.eligibility-currency {
    color: #2FED9A;
    margin-right: 4px;
}

.eligibility-main {
    font-size: 24px;
}

.eligibility-text {
    font-size: 16px;
    margin-left: 6px;
}

.eligibility-note {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6B7280;
}

.eligibility-cta {
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .eligibility-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* EMI Matrix Card (reuses a lot of eligibility styles) */
.emi-card {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    overflow: hidden;
}

.emi-left,
.emi-right {
    padding: 26px 32px 28px;
}

.emi-left {
    background: #F9FAFB;
    border-right: 1px solid #E5E7EB;
}

.emi-right {
    background: #020617;
    color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
}

.emi-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 4px 0;
}

.emi-amount {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.emi-main {
    font-size: 32px;
}

@media (max-width: 1024px) {
    .emi-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Rental Value Card (similar to EMI card) */
.rental-card {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    overflow: hidden;
}

.rental-left,
.rental-right {
    padding: 26px 32px 28px;
}

.rental-left {
    background: #F9FAFB;
    border-right: 1px solid #E5E7EB;
}

.rental-right {
    background: #020617;
    color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
}

.rental-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 4px 0;
}

.rental-amount {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
}

.rental-main {
    font-size: 30px;
}

@media (max-width: 1024px) {
    .rental-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Future Value Card */
.future-card {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    overflow: hidden;
}

.future-left,
.future-right {
    padding: 26px 32px 28px;
}

.future-left {
    background: #F9FAFB;
    border-right: 1px solid #E5E7EB;
}

.future-right {
    background: #020617;
    color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
}

.future-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 4px 0;
}

.future-amount {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.future-main {
    font-size: 28px;
}

@media (max-width: 1024px) {
    .future-card {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================
   REAL ESTATE CALCULATOR BUTTONS (loan-page)
   + Testimonials Success Story submit (same Figma CTA)
   Figma spec: radius 16px, bg #2FED9A, h 58px,
   padding 20px top/bottom, full-width, 2 shadows
   ============================================ */

.loan-page .listing-primary-cta,
.testimonial-main .listing-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 58px;
    border-radius: 16px;
    background: #2FED9A;
    border: none;
    padding: 20px 24px;
    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.10),
        0px 20px 25px -5px rgba(0, 0, 0, 0.10);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #020617;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.loan-page .listing-primary-cta:hover,
.testimonial-main .listing-primary-cta:hover {
    filter: brightness(0.94);
    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.18),
        0px 20px 25px -5px rgba(0, 0, 0, 0.18);
}

.loan-page .listing-primary-cta:active,
.testimonial-main .listing-primary-cta:active {
    filter: brightness(0.88);
}

.loan-page .listing-primary-cta-icon,
.testimonial-main .listing-primary-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #020617;
    flex-shrink: 0;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-main {
    padding-bottom: 100px;
}

.sitemap-hero-section {
    padding-bottom: 40px;
}

.sitemap-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sitemap-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 720px;
    margin-bottom: 32px;
}

.sitemap-top-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.sitemap-card {
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.14),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 22px 24px 24px;
}

.sitemap-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sitemap-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: #020617;
    color: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.sitemap-card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.sitemap-chip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sitemap-chip-list-inline {
    flex-direction: row;
    flex-wrap: wrap;
}

.sitemap-chip-list a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #F3F4F6;
    font-size: 12px;
    color: #4B5563;
    text-decoration: none;
}

.sitemap-chip-list a:hover {
    background: #E5E7EB;
}

.sitemap-divider-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
    margin: 24px 0 20px;
}

.sitemap-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2FED9A;
}

.sitemap-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1024px) {
    .sitemap-top-grid,
    .sitemap-bottom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sitemap-top-grid,
    .sitemap-bottom-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================
   SEARCH AGENTS PAGE
   ============================================ */

.agents-main {
    padding-bottom: 100px;
}

.agents-hero-section {
    padding-bottom: 40px;
}

.agents-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.agents-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 520px;
    margin-bottom: 24px;
}

.agents-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0px 8px 10px -6px #0000001A,
        0px 20px 25px -5px #0000001A,
        0px 0px 0px 8px #F1F5F980;
    margin-bottom: 28px;
}

.agents-city-tabs {
    display: inline-flex;
    gap: 8px;
}

.agents-city-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #F9FAFB;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6B7280;
    cursor: pointer;
}

.agents-city-tab-active {
    background: #020617;
    color: #F9FAFB;
}

.agents-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.agents-search-input-wrap {
    flex: 1;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F3F4F6;
}

.agents-search-input-wrap i {
    font-size: 12px;
    color: #9CA3AF;
}

.agents-search-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    width: 100%;
}

.agents-search-btn {
    padding-inline: 20px;
}

.agents-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0F172A;
}

.agents-section-label-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2FED9A;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(47, 237, 154, 0.25);
}

.agents-pick-city-msg {
    text-align: center;
    padding: 2rem 1rem 1rem;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.5;
    max-width: 420px;
    margin: 0 auto;
}

.agents-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: 24px;
    justify-content: center;
}

.agent-card {
    box-sizing: border-box;
    max-width: 288px;
    width: 100%;
    margin: 0 auto;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 48px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 28px 22px 32px;
    text-align: center;
}

.agent-avatar-wrap {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto 16px;
    background: #F1F5F9;
    padding: 3px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.agent-avatar-wrap .agent-avatar {
    border-radius: 999px;
}

.agent-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agent-name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F172A;
    max-width: 100%;
    padding: 0 4px;
}

.agent-location {
    font-size: 13px;
    line-height: 1.4;
    color: #64748B;
    margin: 0 0 20px;
    max-width: 100%;
    padding: 0 8px;
}

.agent-meta-rows {
    width: 100%;
    margin-bottom: 24px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.agent-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.agent-meta-line .agent-meta-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #94A3B8;
    text-align: left;
    flex-shrink: 0;
}

.agent-meta-line .agent-meta-value {
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    padding: 8px 14px;
    border-radius: 999px;
    background: #F1F5F9;
    text-align: center;
    white-space: nowrap;
    max-width: 55%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    padding: 18px 20px;
    min-height: 56px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F172A;
    background: #2FED9A;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow:
        0 8px 10px -6px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.agent-contact-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.agent-contact-btn:active {
    transform: translateY(0);
}

.agent-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.agent-modal-backdrop.agent-modal-open {
    display: flex;
}

.agent-modal {
    width: 100%;
    max-width: 382px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow:
        0px 40px 80px rgba(15, 23, 42, 0.45),
        0px 0px 0px 1px rgba(241, 245, 249, 0.9);
    padding: 22px 20px 24px;
}

.agent-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.agent-modal-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0F172A;
}

.agent-modal-close {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #6B7280;
}

.agent-modal-subtitle {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 14px;
}

.agent-modal-subtitle span {
    font-weight: 700;
}

.agent-modal-agent-name {
    font-weight: 700;
    color: #111827;
}

.agent-modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-modal-form-msg {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 4px;
}

.agent-modal-form-msg--error {
    background: #FEF2F2;
    color: #B91C1C;
}

.agent-modal-form-msg--ok {
    background: #ECFDF5;
    color: #047857;
}

.agent-modal-field input,
.agent-modal-field select {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    min-height: 48px;
    font-size: 14px;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    background: #F8FAFC;
    color: #0F172A;
    font-family: inherit;
}

.agent-modal-field input::placeholder {
    color: #9CA3AF;
}

.agent-modal-field select {
    appearance: none;
    background-color: #F8FAFC;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    color: #64748B;
}

.agent-modal-field select:valid,
.agent-modal-field select option:not([value=""]) {
    color: #111827;
}

.agent-modal-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px 20px;
    min-height: 48px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0F172A;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    background: #2FED9A;
    box-shadow:
        0 8px 10px -6px rgba(220, 38, 38, 0.2),
        0 20px 25px -5px rgba(220, 38, 38, 0.2);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.agent-modal-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.agent-modal-submit-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.agent-modal-radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.agent-modal-radio-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.agent-modal-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.agent-modal-radio input {
    display: none;
}

.agent-modal-radio-mark {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid #D1D5DB;
    position: relative;
}

.agent-modal-radio input:checked + .agent-modal-radio-mark {
    border-color: #2FED9A;
}

.agent-modal-radio input:checked + .agent-modal-radio-mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: #2FED9A;
}

.agent-modal-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: #6B7280;
}

.agent-modal-consent input {
    display: none;
}

.agent-modal-consent-mark {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

.agent-modal-consent input:checked + .agent-modal-consent-mark {
    background: #2FED9A;
    border-color: #2FED9A;
}

.agent-modal-consent input:checked + .agent-modal-consent-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}

.agent-modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.agent-modal-footer-note {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.45;
    color: #64748B;
    text-align: center;
}

.agent-modal-footer-note a {
    color: #2FED9A;
    font-weight: 600;
    text-decoration: none;
}

.agent-modal-footer-note a:hover {
    text-decoration: underline;
    color: #26d889;
}

/* ============================================
   SEARCH PROJECTS PAGE
   ============================================ */

.projects-main {
    padding-bottom: 100px;
}

.projects-listing-page .projects-hero-section {
    padding-bottom: 32px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 48%);
}

.projects-hero-section {
    padding-bottom: 40px;
}

.projects-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Search card: mode toggle + city row (no overlapping search button) */
.projects-search-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 14px 14px 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.projects-mode-row {
    display: flex;
    gap: 8px;
    padding: 4px;
    border-radius: 14px;
    background: #F1F5F9;
}

.projects-toggle-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748B;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.projects-toggle-btn-active {
    background: #0F172A;
    color: #F9FAFB;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.projects-location-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.projects-city-select {
    flex: 1;
    min-width: 0;
}

.projects-city-select select {
    width: 100%;
    height: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 10px 14px;
    background: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.projects-search-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #2FED9A;
    color: #022C22;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s;
    font-size: 16px;
}

.projects-search-icon:hover {
    filter: brightness(0.97);
}

.projects-search-icon:active {
    transform: scale(0.98);
}

.projects-filters-panel {
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    border-radius: 18px;
    padding: 14px 14px 16px;
    margin-bottom: 22px;
}

.projects-filter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 0;
}

.projects-filter label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.projects-filter select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    padding: 8px 12px;
    font-size: 13px;
}

.projects-section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748B;
    margin: 8px 0 18px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Scoped to project listing page only (avoids clashing with homepage .project-card) */
.projects-main .project-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 18px 20px 20px;
    min-width: 0;
}

.projects-main .project-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.projects-main .project-card-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 160px;
    background: #EEF2F7;
}

.projects-main .project-card-media img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

.projects-main .project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 999px;
    background: #020617;
    color: #F9FAFB;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.projects-main .project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    min-width: 0;
}

.projects-main .project-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    word-break: break-word;
}

.projects-main .project-location {
    font-size: 12px;
    color: #6B7280;
    word-break: break-word;
}

.projects-main .project-byline {
    font-size: 11px;
    color: #9CA3AF;
}

.projects-main .project-price {
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    text-align: right;
    max-width: 42%;
}

.projects-main .project-metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 10px;
}

.projects-main .project-metric {
    min-width: min(140px, 45%);
    flex: 1 1 auto;
}

.projects-main .project-metric-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.projects-main .project-metric-value {
    font-size: 12px;
    font-weight: 600;
}

.projects-main .project-unit-table {
    background: #F1F5F9;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.projects-main .project-unit-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px 12px;
    font-size: 11px;
    align-items: center;
    min-width: 0;
}

.projects-main .project-unit-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.6);
}

.projects-main .project-unit-type,
.projects-main .project-unit-size {
    word-break: break-word;
}

.projects-main .project-unit-price {
    text-align: right;
    font-weight: 600;
}

.projects-main .project-card-footer {
    display: flex;
    justify-content: stretch;
}

.projects-main .project-details-btn {
    padding-inline: 20px;
    width: auto;
    max-width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .projects-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-main .project-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .projects-main .project-card-media {
        min-height: 200px;
        aspect-ratio: 16 / 10;
    }

    .projects-main .project-card-media img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .projects-filter-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Project listing page — mobile */
@media (max-width: 767px) {
    .projects-listing-page .listing-main.projects-main {
        padding-top: 96px;
        padding-bottom: 40px;
    }

    .projects-listing-page .projects-hero-section .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .projects-listing-page .projects-hero-title {
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .projects-listing-page .projects-search-card {
        padding: 12px 12px 14px;
        border-radius: 18px;
        margin-bottom: 14px;
    }

    .projects-listing-page .projects-mode-row {
        gap: 6px;
        padding: 3px;
    }

    .projects-listing-page .projects-toggle-btn {
        padding: 11px 12px;
        font-size: 11px;
    }

    .projects-listing-page .projects-location-row {
        gap: 8px;
    }

    .projects-listing-page .projects-city-select select {
        min-height: 48px;
        font-size: 15px;
    }

    .projects-listing-page .projects-search-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .projects-listing-page .projects-filters-panel {
        padding: 12px 12px 14px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .projects-listing-page .projects-filter-row {
        gap: 10px;
    }

    .projects-listing-page .projects-filter select {
        font-size: 14px;
        padding: 11px 14px;
        min-height: 46px;
        border-radius: 14px;
    }

    .projects-listing-page .projects-main .project-card {
        padding: 14px 14px 16px;
        border-radius: 24px;
        gap: 14px;
    }

    .projects-listing-page .projects-main .project-card-header {
        flex-direction: column;
        align-items: stretch;
    }

    .projects-listing-page .projects-main .project-price {
        max-width: none;
        text-align: left;
        margin-top: 6px;
    }

    .projects-listing-page .projects-main .project-metrics-row {
        flex-direction: column;
        gap: 10px;
    }

    .projects-listing-page .projects-main .project-metric {
        min-width: 0;
        width: 100%;
    }

    .projects-listing-page .projects-main .project-details-btn {
        width: 100%;
    }

    .projects-listing-page .projects-main .project-unit-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 12px;
    }

    .projects-listing-page .projects-main .project-unit-price {
        text-align: left;
    }
}

@media (max-width: 1200px) {
    .agents-card-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .agents-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .agents-search-form {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .agents-card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .agent-card {
        max-width: 100%;
        border-radius: 32px;
    }
}

@media (max-width: 1024px) {
    .loan-main {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .calculator-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-hero-title {
        font-size: 36px;
    }

    .loan-page .calculator-tabs-row {
        flex-wrap: wrap;
        height: auto;
        padding: 8px;
        border-radius: 24px;
        gap: 6px;
    }

    .loan-page .calculator-tab {
        flex: 0 1 auto;
        min-width: unset;
        padding: 10px 14px;
        border-radius: 18px;
        font-size: 10px;
    }

    .calc-tab-icon-box {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 12px;
    }

    .calc-tab-label {
        font-size: 9px;
    }
}

.register-overlay-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.benefit-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}

.benefit-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
}

.register-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-number {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0;
}


.register-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 20px;
    color: #1F2937;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    z-index: 10;
}

.register-close-btn:hover {
    color: #6B7280;
}

.register-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    text-align: center;
}

.register-subtitle {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 20px;
}

.user-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #F3F4F6;
    padding: 4px;
    border-radius: 12px;
}

.user-type-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.user-type-btn.active {
    background-color: #2FED9A;
    color: #020617;
}

.user-type-btn:hover {
    color: #020617;
}

.register-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    overflow: visible;
    min-height: 0;
}

.input-check-icon {
    position: absolute;
    right: 15px;
    color: #2FED9A;
    font-size: 16px;
    z-index: 1;
}

.terms-checkbox {
    margin: 5px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 10px;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s;
    background-color: #FFFFFF;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #2FED9A;
    border-color: #2FED9A;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #020617;
    font-size: 12px;
    display: block;
}

.checkbox-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}

.terms-note {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    padding-left: 32px;
}

.create-account-btn {
    width: 100%;
    padding: 14px;
    background-color: #2FED9A;
    color: #020617;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}

.create-account-btn:hover {
    background-color: #26DD8A;
}

.register-footer {
    margin-top: 15px;
    text-align: center;
}

.register-footer p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.signin-link {
    color: #2FED9A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.signin-link:hover {
    color: #26DD8A;
}

@media (max-width: 1024px) {
    .register-card {
        width: 90%;
        max-width: 822px;
        height: auto;
        min-height: 600px;
        flex-direction: column;
        border-radius: 40px;
        overflow: visible;
    }
    
    .register-card-left {
        min-height: 400px;
    }

    /* Stacked hero: avoid vertical centering clipping the title */
    .register-text-overlay {
        justify-content: flex-start;
        padding-top: 40px;
    }
    
    .register-card-right {
        padding: 30px 20px;
        overflow: visible;
        height: auto;
    }

    .register-form {
        overflow: visible;
        flex: none;
    }

    .login-card {
        width: min(100%, 541px);
        height: auto;
        min-height: 0;
        max-height: none;
    }
}

/* Login & Register — phones / small tablets (match desktop behavior, fluid layout) */
@media (max-width: 768px) {
    .login-page-container,
    .register-page-container {
        padding: 12px;
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
        padding-top: max(12px, env(safe-area-inset-top, 0px));
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
        align-items: stretch;
        justify-content: flex-start;
        min-height: 100vh;
        min-height: 100dvh;
        box-sizing: border-box;
    }

    .register-page {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .login-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 28px;
        padding: 28px 18px 32px;
        box-shadow: 0 10px 48px -12px rgba(0, 0, 0, 0.18);
    }

    .login-card-close {
        top: 14px;
        right: 14px;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .login-welcome {
        font-size: clamp(22px, 6vw, 32px);
    }

    .login-subtitle {
        margin-bottom: 28px;
    }

    .login-logo {
        height: 52px;
    }

    .login-form {
        gap: 20px;
    }

    .signin-btn {
        min-height: 48px;
        padding: 14px 16px;
    }

    .register-card {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        border-radius: 24px;
        box-shadow: 0 10px 48px -12px rgba(0, 0, 0, 0.18);
        overflow: visible;
    }

    .register-card-left {
        min-height: 300px;
    }

    .register-text-overlay {
        justify-content: flex-start;
        padding: max(48px, env(safe-area-inset-top, 0px)) 18px 28px;
        box-sizing: border-box;
    }

    .register-overlay-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .register-benefits {
        gap: 10px;
    }

    .benefit-text {
        font-size: 14px;
    }

    .register-card-right {
        padding: 24px 16px 28px;
        overflow: visible;
        height: auto;
    }

    .register-close-btn {
        top: 14px;
        right: 14px;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .register-title {
        font-size: clamp(22px, 5vw, 28px);
    }

    .user-type-toggle {
        gap: 6px;
    }

    .user-type-btn {
        min-height: 44px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .register-form {
        overflow: visible;
    }

    .create-account-btn {
        min-height: 48px;
    }

    .login-phone-field .login-phone-affix {
        padding: 12px 10px 12px 14px;
        font-size: 14px;
    }

    .login-phone-field .login-phone-input {
        padding: 12px 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .login-page-container,
    .register-page-container {
        padding: 8px;
    }

    .login-card {
        border-radius: 22px;
        padding: 24px 14px 28px;
    }

    .register-card {
        border-radius: 20px;
    }

    .register-card-left {
        min-height: 260px;
    }

    .register-text-overlay {
        justify-content: flex-start;
        padding: max(44px, env(safe-area-inset-top, 0px)) 14px 22px;
        box-sizing: border-box;
    }

    .register-overlay-title {
        margin-bottom: 12px;
    }

    .register-card-right {
        padding: 20px 12px 24px;
    }

    .benefit-text {
        font-size: 13px;
    }
}

/* Login Page */
.login-page {
    background-color: #FFFFFF;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.login-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #FFFFFF;
}

.login-card {
    position: relative;
    width: 541px;
    height: 674px;
    background-color: #FFFFFF;
    border-radius: 70px;
    box-shadow: 12px 24px 119.4px 7px rgba(0, 0, 0, 0.25);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.login-card-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 20px;
    color: #1F2937;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    z-index: 10;
}

.login-card-close:hover {
    color: #6B7280;
}

.login-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-card-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Login Modal (for backward compatibility) */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal {
    position: relative;
    width: 541px;
    height: 674px;
    background-color: #FFFFFF;
    border-radius: 70px;
    box-shadow: 12px 24px 119.4px 7px rgba(0, 0, 0, 0.25);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.login-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 20px;
    color: #1F2937;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #6B7280;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.login-tagline {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.login-modal-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login-welcome {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 40px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #9CA3AF;
    font-size: 16px;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: #000000;
    background-color: #FFFFFF;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #2FED9A;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.forgot-password {
    position: absolute;
    right: 15px;
    color: #2FED9A;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #26DD8A;
}

.signin-btn {
    width: 100%;
    padding: 16px;
    background-color: #0F172A;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.signin-btn:hover {
    background-color: #1E293B;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.create-account-link {
    color: #2FED9A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.create-account-link:hover {
    color: #26DD8A;
}

/* Form Messages */
.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* OTP Display Box */
.otp-display-box {
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(135deg, #2FED9A 0%, #2FED9A 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(47, 237, 154, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.otp-display-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.otp-display-content i {
    font-size: 20px;
    color: #000000;
}

.otp-display-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.otp-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.otp-value {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

/* Form Hints */
.form-hint {
    display: block;
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
    font-weight: 400;
}

/* Register/Login Steps */
.register-step,
.login-step {
    animation: fadeIn 0.3s ease-in;
}

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

/* Button Disabled State */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

@media (max-width: 768px) {
    .login-modal {
        width: 90%;
        max-width: 541px;
        height: auto;
        min-height: 600px;
        border-radius: 40px;
        padding: 40px 30px;
    }
    
    .login-welcome {
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE DESIGN SYSTEM - 1440px BASE
   ============================================ */

/* Large Screens (1920px and above) - Extra space on sides */
@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
        padding: 0 60px;
    }
}

/* Standard Desktop (1440px - 1919px) - Base Design */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1440px;
        padding: 0 40px;
    }
}

/* Medium Desktop (1024px - 1439px) - Slightly reduced padding */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .main-header .container,
    .hero-content {
        padding: 0 16px;
    }
}

/* Responsive adjustments for header and hero */
@media (min-width: 768px) and (max-width: 1023px) {
    .main-header .container,
    .hero-content {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .main-header .container,
    .hero-content {
        padding: 0 20px;
    }
}

/* Ensure service cards maintain proper spacing on larger screens */
@media (min-width: 1440px) {
    .services-grid {
        justify-content: flex-start;
    }
    
    .services-images-row {
        justify-content: flex-start;
    }
}

/* ============================================
   POST PROPERTY PAGE
   ============================================ */

.post-property-page {
    background: #F1F5F9;
    min-height: 100vh;
}

.post-property-page .header-wrapper {
    position: static;
    padding-top: 0;
}

.post-property-main {
    padding: 24px 0 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.post-property-panel {
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 5.09px 5.09px 5.09px 7.89px;
    margin-bottom: 40px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: visible;
    height: 73.78px;
}

.panel-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    width: 100%;
}

.post-property-panel .progress-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 32px;
    padding: 5.09px 7.89px;
    margin-right: -7.89px;
    margin-top: -5.09px;
    margin-bottom: -5.09px;
    height: calc(100% + 10.18px);
}

.back-button {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 16px;
    box-shadow: 
        0 0 4px -4px rgba(0, 0, 0, 0.10),
        0 0 10px -3px rgba(0, 0, 0, 0.10);
    transition: all 0.2s;
    flex-shrink: 0;
    align-self: center;
}

.back-button:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 6px -4px rgba(0, 0, 0, 0.15),
        0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.back-button i {
    font-size: 16px;
    color: #0F172A;
}

.panel-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    width: 100%;
}

.panel-title-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    align-items: flex-start;
}

.post-property-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #0F172A;
    margin: 0;
    text-transform: uppercase;
}

.post-property-step {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
    margin: 0;
}

.progress-step {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E2E8F0;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 20px;
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}

.progress-step.active {
    background: #2FED9A;
    color: #0F172A;
    box-shadow: 0 0 0 4px rgba(47, 237, 154, 0.2);
}

.progress-step i {
    font-size: 18px;
}

.progress-connector {
    width: 20px;
    height: 2px;
    background: #E2E8F0;
    margin: 0 4px;
    transition: background 0.3s;
}

.progress-step.active ~ .progress-connector {
    background: #2FED9A;
}

.progress-step.active ~ .progress-step.active ~ .progress-connector {
    background: #E2E8F0;
}

.post-property-form {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-right-column {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 0;
}

.form-left-column .form-group {
    margin-bottom: 32px;
}

.form-left-column .form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 23px 32.78px;
    border: 1px solid rgba(15, 23, 42, 0.20);
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #F1F5F9;
    transition: all 0.2s;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    min-height: 86.67px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2FED9A;
    background: #FFFFFF;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 86.67px;
}

.property-action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    width: 100%;
    height: 180.82px;
    border: 1px solid #0F172A;
    border-radius: 40px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    box-shadow: none;
    position: relative;
    box-sizing: border-box;
}

.action-btn:hover {
    border-color: #0F172A;
}

.action-btn.active {
    background: #0F172A;
    border-color: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.action-btn i {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #F8FAFC;
    color: #9CA3AF;
}

.action-btn.active i {
    background: #2FED9A;
    color: #020617;
}

.action-btn-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.action-label {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9CA3AF;
    opacity: 0.8;
}

.action-btn.active .action-label {
    color: #FFFFFF;
    opacity: 0.8;
}

.action-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0F172A;
    line-height: 1.2;
}

.action-btn.active .action-title {
    color: #FFFFFF;
}

.property-type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.type-tab {
    padding: 10px 24px;
    border: none;
    border-radius: 9999px;
    background: #F8FAFC;
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.type-tab:hover {
    color: #020617;
    background: #F1F5F9;
}

.type-tab.active {
    background: #2FED9A;
    color: #FFFFFF;
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.property-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 31.02px 43.89px 31.04px 43.88px;
    border: 1px solid #E2E8F0;
    border-radius: 32px;
    background: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    width: fit-content;
    min-width: 188.77px;
    min-height: 117.06px;
    box-shadow: none;
}

.property-type-btn i {
    font-size: 32px;
    color: #9CA3AF;
}

.property-type-btn:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.property-type-btn.active {
    background: #FEF2F2;
    border: 1px solid #2FED9A;
    color: #2FED9A;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.10),
                0 20px 25px -5px rgba(0, 0, 0, 0.10);
}

.property-type-btn.active i {
    color: #2FED9A;
}

.security-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 20px 0;
    font-size: 11px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    margin-top: 32px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.progress-btn {
    padding: 24px 64px;
    background: #2FED9A;
    color: #0F172A;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.2s;
    width: fit-content;
    min-width: 408px;
    height: 70px;
    line-height: 20px;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.30);
}

.progress-btn:hover {
    background: #28d889;
    transform: translateY(-1px);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.35);
}

.progress-btn i {
    font-size: 12px;
}

.post-property-page .progress-btn:disabled,
.post-property-page .finalize-btn:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
}

.post-property-page .progress-btn:disabled:hover,
.post-property-page .finalize-btn:disabled:hover {
    background: #2FED9A;
    transform: none;
    box-shadow: none;
}

/* ============================================
   STEP 2 SPECIFIC STYLES
   ============================================ */

.form-section {
    margin-bottom: 48px;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.section-header i {
    font-size: 20px;
    color: #2FED9A;
}

.section-header-bar {
    width: 4px;
    height: 40px;
    background: #2FED9A;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

.section-header-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    margin: 0;
}

.section-subtitle {
    font-size: 12px;
    color: #64748B;
    font-weight: 400;
    margin: 0;
    text-transform: none;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.location-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    max-width: 100%;
}

.map-container {
    background: #F1F5F9;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #64748B;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2FED9A;
}

.map-placeholder p {
    margin: 8px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.map-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

.location-map-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    position: relative;
    border-top: 1px solid #E2E8F0;
    background: #E2E8F0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.location-map-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    z-index: 2;
}

.location-search-input {
    flex: 1;
    min-width: 140px;
    margin: 0 !important;
    max-width: none !important;
}

.location-detect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #CBD5E1;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.location-detect-btn:hover:not(:disabled) {
    background: #ECFDF5;
    border-color: #2FED9A;
}

.location-detect-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.location-detect-btn i {
    font-size: 14px;
    color: #0F766E;
}

.location-map-canvas {
    flex: 1;
    min-height: 280px;
    position: relative;
    border-radius: 0 0 12px 12px;
}

#locationMap {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.map-api-missing {
    padding: 24px 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    background: #F8FAFC;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-api-missing code {
    font-size: 12px;
    word-break: break-all;
}

.map-api-error {
    border: 1px solid #FECACA;
    background: #FEF2F2;
    color: #7F1D1D;
}

.map-api-error a {
    color: #B91C1C;
    font-weight: 600;
    text-decoration: underline;
}

.map-api-error-steps {
    margin: 12px 0 0;
    padding-left: 1.25rem;
    font-size: 13px;
    line-height: 1.55;
}

.map-api-error-steps li {
    margin-bottom: 8px;
}

.map-api-error-ref {
    margin-top: 16px;
    font-size: 12px;
    opacity: 0.9;
}

.features-grid,
.transaction-grid,
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.form-select {
    width: 100%;
    padding: 23px 32.78px;
    border: 1px solid rgba(15, 23, 42, 0.20);
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    background: #F1F5F9;
    transition: all 0.2s;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #2FED9A;
    background: #FFFFFF;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
}

/**
 * Post-property wizard: native <select> matches main site dropdown triggers
 * (same look as header “Tools & Advice” panel trigger / .top-toolbar-property-trigger).
 */
.post-property-page select.form-select {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 11px 40px 11px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-color: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #020617;
    line-height: 1.4;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    /* Long selected labels stay inside the field (closed state) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.post-property-page select.form-select:hover:not(:disabled) {
    border-color: #CBD5E1;
}

.post-property-page select.form-select:focus {
    outline: none;
    border-color: #2FED9A;
    background-color: #FFFFFF;
    box-shadow:
        inset 0 2px 4px 1px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(47, 237, 154, 0.2);
}

.post-property-page select.form-select:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    background-color: #F1F5F9;
    color: #64748B;
}

/* Hide native select when enhanced (JS adds .hunt-custom-select wrapper) */
.post-property-page .hunt-custom-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.post-property-page .hunt-custom-select {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
}

.post-property-page .hunt-custom-select.is-open {
    z-index: 99993;
}

.post-property-page .hunt-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding: 11px 40px 11px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background-color: #F8FAFC;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #020617;
    line-height: 1.35;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.post-property-page .hunt-custom-select__trigger::after {
    content: '';
    flex-shrink: 0;
    width: 12px;
    height: 8px;
    margin-left: auto;
    background: no-repeat center
        url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px 8px;
}

.post-property-page .hunt-custom-select__trigger:hover:not(:disabled) {
    border-color: #CBD5E1;
}

.post-property-page .hunt-custom-select__trigger:focus {
    outline: none;
    border-color: #2FED9A;
    background-color: #FFFFFF;
    box-shadow:
        inset 0 2px 4px 1px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(47, 237, 154, 0.2);
}

.post-property-page .hunt-custom-select__trigger:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    background-color: #F1F5F9;
    color: #64748B;
}

.post-property-page .hunt-custom-select__trigger span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-property-page .hunt-custom-select__backdrop {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(15, 23, 42, 0.45);
    -webkit-tap-highlight-color: transparent;
}

.post-property-page .hunt-custom-select__panel {
    position: fixed;
    z-index: 99991;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: min(70vh, 520px);
    margin: 0 auto;
    max-width: 100vw;
    padding: 8px 0 calc(12px + env(safe-area-inset-bottom, 0));
    background: #FFFFFF;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 3px solid #2FED9A;
    box-sizing: border-box;
}

.post-property-page .hunt-custom-select__option {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #0F172A;
    text-align: left;
    cursor: pointer;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    box-sizing: border-box;
}

.post-property-page .hunt-custom-select__option.is-placeholder {
    color: #64748B;
    font-weight: 500;
}

.post-property-page .hunt-custom-select__option.is-selected {
    background: rgba(47, 237, 154, 0.14);
    color: #022C22;
    font-weight: 600;
}

.post-property-page .hunt-custom-select__option:hover,
.post-property-page .hunt-custom-select__option:focus {
    outline: none;
    background: #F1F5F9;
}

@media (min-width: 769px) {
    .post-property-page .hunt-custom-select__panel {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        bottom: auto;
        max-height: 280px;
        border-radius: 12px;
        border-top: 1px solid #2FED9A;
        padding: 8px 0;
        box-shadow: 0 17px 64px 12px rgba(0, 0, 0, 0.2);
    }

    .post-property-page .hunt-custom-select__backdrop {
        display: none;
    }

    .post-property-page .hunt-custom-select.is-open .hunt-custom-select__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: transparent;
        z-index: 99989;
    }
}

.pill-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill-btn {
    padding: 10px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    background: #FFFFFF;
    color: #64748B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.pill-btn:hover {
    border-color: #2FED9A;
}

.pill-btn.active {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #0F172A;
}

.yes-no-buttons {
    display: flex;
    gap: 8px;
}

.yes-no-btn {
    padding: 10px 24px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #FFFFFF;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.yes-no-btn:hover {
    border-color: #2FED9A;
}

.yes-no-btn.active {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #0F172A;
}

.status-buttons {
    display: flex;
    gap: 12px;
}

.status-btn {
    padding: 12px 24px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #FFFFFF;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.status-btn:hover {
    border-color: #2FED9A;
}

.status-btn.active {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #0F172A;
}

.specialty-rooms {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specialty-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specialty-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
}

.furnishing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.furnishing-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}

.furnishing-item:focus-within {
    outline: 2px solid #2FED9A;
    outline-offset: 2px;
}

.form-hint--furnishing {
    margin: -4px 0 12px;
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
}

.furnishing-item:hover {
    border-color: #2FED9A;
}

.furnishing-item:has(input[type="checkbox"]:checked) {
    border-color: #2FED9A;
    box-shadow: 0 0 0 1px rgba(47, 237, 154, 0.35);
}

.furnishing-item input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.furnishing-item input[type="checkbox"]:checked + i {
    color: #2FED9A;
}

.furnishing-item i {
    font-size: 24px;
    color: #9CA3AF;
    transition: color 0.2s;
}

.furnishing-item span {
    font-size: 11px;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 500;
}

.area-input-wrapper {
    position: relative;
}

.area-input {
    padding-right: 80px;
}

.area-unit {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    pointer-events: none;
}

.infrastructure-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infrastructure-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.infrastructure-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
}

.price-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 23px 32.78px;
    border: 1px solid rgba(15, 23, 42, 0.20);
    border-radius: 24px;
    background: #F1F5F9;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
}

.price-label {
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
}

.price-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    color: #0F172A;
    outline: none;
}

.price-input-wrapper i {
    color: #2FED9A;
    font-size: 18px;
}

.form-hint {
    display: block;
    font-size: 11px;
    color: #64748B;
    margin-top: 4px;
    text-transform: uppercase;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.previous-btn {
    padding: 14px 32px;
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.previous-btn:hover {
    background: #E2E8F0;
    border-color: #CBD5E1;
}

.previous-btn i {
    font-size: 12px;
}

.progress-connector.active {
    background: #2FED9A;
}

/* ============================================
   STEP 3 SPECIFIC STYLES - AMENITIES
   ============================================ */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.amenity-item:hover {
    border-color: #CBD5E1;
}

/* Full-card hit target — reliable multi-select taps on mobile (no display:none / label double-toggle) */
.amenity-item input[type="checkbox"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    appearance: none;
    -webkit-appearance: none;
}

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    position: relative;
    transition: all 0.2s;
}

.amenity-icon-wrapper i {
    font-size: 32px;
    color: #9CA3AF;
    transition: color 0.2s;
}

.amenity-checkmark {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
}

.amenity-checkmark i {
    font-size: 12px;
    color: #FFFFFF;
}

.amenity-label {
    font-size: 12px;
    color: #64748B;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s;
}

.amenity-item.active {
    background: #0F172A;
    border-color: #0F172A;
}

.amenity-item.active .amenity-icon-wrapper {
    border-color: #2FED9A;
    background: #0F172A;
}

.amenity-item.active .amenity-icon-wrapper i {
    color: #FFFFFF;
}

.amenity-item.active .amenity-checkmark {
    opacity: 1;
    transform: scale(1);
}

.amenity-item.active .amenity-label {
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .property-types-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .property-action-buttons {
        grid-template-columns: 1fr;
    }

    /* Post property wizard — tablet */
    .post-property-page .form-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .post-property-page .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .post-property-page .location-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .post-property-page .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .post-property-page .furnishing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .post-property-page .area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .post-property-page .features-grid,
    .post-property-page .transaction-grid,
    .post-property-page .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .post-property-page .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .post-property-page .post-property-main {
        padding: 16px 0 56px;
    }

    /* Step header: stack title + scrollable progress */
    .post-property-page .post-property-panel {
        flex-wrap: wrap;
        height: auto;
        min-height: 0;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 12px;
    }

    .post-property-page .back-button {
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .post-property-page .panel-content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        min-width: 0;
    }

    .post-property-page .panel-title-section {
        padding-right: 0;
        min-width: 0;
    }

    .post-property-page .post-property-title {
        font-size: 16px;
        line-height: 1.25;
        letter-spacing: -0.3px;
    }

    .post-property-page .post-property-step {
        font-size: 12px;
    }

    .post-property-page .post-property-panel .progress-indicator {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding: 8px 10px;
        gap: 0;
        flex-wrap: nowrap;
        height: auto;
        min-height: 56px;
        box-sizing: border-box;
    }

    .post-property-page .progress-indicator::-webkit-scrollbar {
        height: 4px;
    }

    .post-property-page .progress-step {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .post-property-page .progress-step i {
        font-size: 14px;
    }

    .post-property-page .progress-connector {
        width: 14px;
        min-width: 14px;
        margin: 0 2px;
        flex-shrink: 0;
    }

    .post-property-page .post-property-form {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .post-property-page .form-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .post-property-page .form-left-column .form-group {
        margin-bottom: 20px;
    }

    .post-property-page .form-input,
    .post-property-page .form-textarea {
        min-height: 52px;
        padding: 14px 18px;
        border-radius: 16px;
    }

    .post-property-page select.form-select {
        min-height: 48px;
        padding: 12px 40px 12px 14px;
        border-radius: 12px;
        font-size: 16px;
        line-height: 1.3;
        -webkit-tap-highlight-color: transparent;
    }

    .post-property-page .hunt-custom-select__trigger {
        min-height: 48px;
        padding: 12px 40px 12px 14px;
        font-size: 16px;
        line-height: 1.3;
        -webkit-tap-highlight-color: transparent;
    }

    .post-property-page .hunt-custom-select__option {
        font-size: 16px;
        padding: 16px 18px;
    }

    .post-property-page .form-textarea {
        min-height: 120px;
    }

    .post-property-page .location-inputs .form-group {
        min-width: 0;
        max-width: 100%;
    }

    .post-property-page .post-property-form {
        min-width: 0;
        max-width: 100%;
    }

    .post-property-page .property-action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .post-property-page .action-btn {
        height: auto;
        min-height: 120px;
        padding: 18px 16px;
        border-radius: 24px;
        gap: 12px;
    }

    .post-property-page .action-btn i {
        font-size: 26px;
        width: 44px;
        height: 44px;
    }

    .post-property-page .action-title {
        font-size: 16px;
    }

    .post-property-page .property-type-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .post-property-page .type-tab {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        padding: 10px 12px;
        font-size: 11px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }

    .post-property-page .property-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .post-property-page .property-type-btn {
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 16px 10px;
        min-height: 96px;
        font-size: 10px;
        line-height: 1.25;
    }

    .post-property-page .property-type-btn i {
        font-size: 24px;
    }

    .post-property-page .security-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
        padding: 16px 0;
        margin-top: 24px;
    }

    .post-property-page .form-actions {
        justify-content: stretch;
        margin-top: 24px;
    }

    .post-property-page .form-actions .progress-btn {
        width: 100%;
    }

    .post-property-page .progress-btn {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: auto;
        min-height: 56px;
        padding: 16px 24px;
        border-radius: 16px;
        gap: 12px;
    }

    /* Step 2 — location column + map stay within viewport */
    .post-property-page .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .post-property-page .map-container {
        min-height: 260px;
        border-radius: 12px;
    }

    .post-property-page .location-map-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .post-property-page .location-detect-btn {
        width: 100%;
        justify-content: center;
    }

    .post-property-page .location-detect-btn-text {
        display: inline;
    }

    .post-property-page .status-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }

    .post-property-page .yes-no-buttons {
        flex-wrap: wrap;
    }

    .post-property-page .features-grid,
    .post-property-page .transaction-grid,
    .post-property-page .price-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .post-property-page .area-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .post-property-page .form-section {
        margin-bottom: 32px;
    }

    .post-property-page .section-header {
        margin-bottom: 20px;
        gap: 12px;
    }

    .post-property-page .furnishing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .post-property-page .furnishing-item {
        padding: 12px 8px;
    }

    .post-property-page .furnishing-item i {
        font-size: 20px;
    }

    .post-property-page .furnishing-item span {
        font-size: 10px;
        text-align: center;
    }

    .post-property-page .specialty-item,
    .post-property-page .infrastructure-item {
        flex-wrap: wrap;
        gap: 8px;
        align-items: flex-start;
    }

    .post-property-page .price-input-wrapper {
        flex-wrap: wrap;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .post-property-page .form-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 32px;
        padding-top: 24px;
    }

    .post-property-page .form-navigation .previous-btn,
    .post-property-page .form-navigation .progress-btn,
    .post-property-page .form-navigation .finalize-btn {
        width: 100%;
        justify-content: center;
    }

    .post-property-page .previous-btn {
        order: 2;
    }

    .post-property-page .form-navigation .progress-btn,
    .post-property-page .form-navigation .finalize-btn {
        order: 1;
    }

    /* Step 3 */
    .post-property-page .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .post-property-page .amenity-item {
        padding: 14px 10px;
    }

    .post-property-page .amenity-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .post-property-page .amenity-icon-wrapper i {
        font-size: 22px;
    }

    .post-property-page .amenity-label {
        font-size: 10px;
        line-height: 1.3;
    }

    /* Step 4 */
    .post-property-page .view-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        margin-bottom: 20px;
        padding-bottom: 4px;
    }

    .post-property-page .view-tab {
        padding: 10px 14px;
        font-size: 10px;
    }

    .post-property-page .upload-area {
        padding: 36px 16px;
        border-radius: 12px;
    }

    .post-property-page .upload-icon {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .post-property-page .upload-text {
        font-size: 15px;
    }

    .post-property-page .upload-subtext {
        font-size: 13px;
    }

    .post-property-page .upload-multi-hint {
        font-size: 12px;
        max-width: none;
    }

    .post-property-page .select-assets-btn {
        width: 100%;
        max-width: 100%;
    }

    .post-property-page .privacy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 18px;
    }

    .post-property-page .identity-verification {
        align-items: flex-start;
        width: 100%;
    }

    .post-property-page .finalize-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   STEP 4 SPECIFIC STYLES - VISUAL CAPTURE
   ============================================ */

.view-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
    overflow-x: auto;
}

.view-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.view-tab:hover {
    color: #0F172A;
}

.view-tab.active {
    color: #2FED9A;
    border-bottom-color: #2FED9A;
}

.upload-section {
    margin-bottom: 32px;
}

.post-step4-edit-banner {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    background: #ecfdf5;
    border: 1px solid rgba(47, 237, 154, 0.45);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 0 0 20px;
}

.upload-area {
    border: 2px dashed #CBD5E1;
    border-radius: 16px;
    padding: 64px 32px;
    text-align: center;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.upload-area:hover {
    border-color: #2FED9A;
    background: #F0FDF4;
}

.upload-area.drag-over {
    border-color: #2FED9A;
    background: #F0FDF4;
    border-style: solid;
}

.upload-icon {
    font-size: 64px;
    color: #CBD5E1;
    margin-bottom: 24px;
}

.upload-area:hover .upload-icon,
.upload-area.drag-over .upload-icon {
    color: #2FED9A;
}

.upload-text {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.highlight-green {
    color: #2FED9A;
}

.upload-subtext {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 12px;
}

.upload-multi-hint {
    font-size: 13px;
    color: #334155;
    margin: 0 0 20px;
    line-height: 1.45;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.upload-multi-hint strong {
    color: #0F172A;
    font-weight: 700;
}

.select-assets-btn {
    padding: 14px 32px;
    background: #2FED9A;
    color: #0F172A;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.select-assets-btn:hover {
    background: #25D982;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 237, 154, 0.3);
}

.upload-formats {
    font-size: 12px;
    color: #9CA3AF;
    margin: 0;
}

.upload-preview {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #F0FDF4;
    border: 1px solid rgba(47, 237, 154, 0.45);
    text-align: left;
}

.upload-preview[hidden] {
    display: none !important;
}

.upload-preview-inner strong {
    display: block;
    font-size: 15px;
    color: #0F172A;
    margin-bottom: 8px;
}

.upload-preview-names {
    font-size: 13px;
    color: #475569;
    margin: 0;
    word-break: break-all;
}

.upload-thumb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.upload-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
}

.upload-area--has-files {
    border-color: #2FED9A;
    background: #F0FDF4;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-card {
    background: #0F172A;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.privacy-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.privacy-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(47, 237, 154, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-icon-wrapper i {
    font-size: 24px;
    color: #2FED9A;
}

.privacy-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}

.privacy-subtitle {
    font-size: 12px;
    color: #94A3B8;
    margin: 0;
}

.identity-verification {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.verification-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 600;
}

.verification-problem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.math-problem {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
}

.verification-input {
    width: 60px;
    padding: 8px 12px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #1E293B;
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}

.verification-input:focus {
    outline: none;
    border-color: #2FED9A;
    background: #0F172A;
}

.finalize-btn {
    padding: 16px 32px;
    background: #2FED9A;
    color: #0F172A;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.finalize-btn:hover {
    background: #25D982;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 237, 154, 0.3);
}

.finalize-btn i {
    font-size: 16px;
}

/* ============================================
   RERA PAGE
   ============================================ */

.rera-page {
    background: #FFFFFF;
    min-height: 100vh;
}

.rera-page .header-wrapper {
    position: static;
    padding-top: 0;
    background: #FFFFFF;
}

.rera-page .main-header {
    background: #FFFFFF;
}

.rera-main {
    padding-top: 0;
}

.rera-hero-section {
    padding: 60px 0 40px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.16), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.rera-title-section {
    text-align: left;
}

.rera-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.rera-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rera-shield-icon {
    font-size: 24px;
    color: #2FED9A;
}

.rera-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

.rera-content-section {
    padding: 40px 0 80px;
    background: #F9FAFB;
}

.rera-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.rera-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rera-card-large {
    min-height: 500px;
}

.rera-card-dark {
    background: #0F172A;
    color: #FFFFFF;
}

.rera-card-white {
    background: #FFFFFF;
}

.rera-card-icon-wrapper {
    margin-bottom: 24px;
}

.rera-card-icon {
    font-size: 48px;
    color: #2FED9A;
}

.rera-card-dark .rera-card-icon {
    color: #2FED9A;
}

.rera-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rera-card-dark .rera-card-title {
    color: #FFFFFF;
}

.rera-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.rera-card-dark .rera-card-description {
    color: #E2E8F0;
}

.rera-subsection {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.rera-subsection-title {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.rera-numbered-list {
    list-style: decimal;
    padding-left: 24px;
    color: #475569;
    line-height: 1.8;
}

.rera-numbered-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.rera-objectives-list {
    list-style: none;
    padding: 0;
}

.rera-objective-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.rera-check-icon {
    font-size: 20px;
    color: #2FED9A;
    margin-top: 4px;
    flex-shrink: 0;
}

.rera-objective-content {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.rera-objective-content strong {
    color: #0F172A;
    font-weight: 700;
}

.rera-timeline-list {
    list-style: none;
    padding: 0;
    color: #E2E8F0;
    line-height: 1.8;
}

.rera-timeline-list li {
    margin-bottom: 16px;
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.rera-timeline-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2FED9A;
    font-size: 24px;
    line-height: 1;
}

.rera-consult-btn {
    background: #2FED9A;
    color: #0F172A;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    transition: all 0.2s;
}

.rera-consult-btn:hover {
    background: #26DD8A;
    transform: translateY(-1px);
}

.rera-consult-btn i {
    font-size: 12px;
}

.rera-documents-section {
    margin-top: 60px;
}

.rera-documents-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 32px;
    text-align: center;
}

.rera-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.rera-document-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.rera-document-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.rera-document-icon {
    font-size: 40px;
    color: #2FED9A;
    margin-bottom: 16px;
}

.rera-document-state {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.rera-download-btn {
    width: 100%;
    background: #2FED9A;
    color: #0F172A;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.rera-download-btn:hover {
    background: #26DD8A;
    transform: translateY(-1px);
}

.rera-download-btn i {
    font-size: 12px;
}

/* Responsive Styles for RERA Page */
@media (max-width: 1024px) {
    .rera-cards-row {
        grid-template-columns: 1fr;
    }
    
    .rera-documents-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .rera-main-title {
        font-size: 36px;
    }
    
    .rera-subtitle {
        font-size: 18px;
    }
    
    .rera-card {
        padding: 24px;
    }
    
    .rera-card-large {
        min-height: auto;
    }
    
    .rera-documents-grid {
        grid-template-columns: 1fr;
    }
    
    .rera-documents-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .rera-main-title {
        font-size: 28px;
    }
    
    .rera-subtitle {
        font-size: 16px;
    }
    
    .rera-shield-icon {
        font-size: 20px;
    }
    
    .rera-card {
        padding: 20px;
    }
    
    .rera-card-title {
        font-size: 20px;
    }
}

/* ============================================
   LEGAL ADVISORY PAGE
   ============================================ */

.legal-advisory-page {
    background: #FFFFFF;
    min-height: 100vh;
}

.legal-advisory-page .header-wrapper {
    position: static;
    padding-top: 0;
    background: #FFFFFF;
}

.legal-advisory-page .main-header {
    background: #FFFFFF;
}

.legal-advisory-main {
    padding-top: 0;
}

.legal-hero-section {
    padding: 60px 0 40px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.16), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.legal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.legal-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon-circle i {
    font-size: 40px;
    color: #FFFFFF;
}

.legal-title-content {
    flex: 1;
}

.legal-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.legal-objective-card {
    background: #0F172A;
    border-radius: 0 24px 24px 0;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.legal-objective-content {
    flex: 1;
    z-index: 2;
}

.legal-objective-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.2;
}

.legal-objective-title .highlight-green {
    color: #2FED9A;
}

.legal-objective-text {
    font-size: 16px;
    line-height: 1.8;
    color: #E2E8F0;
    max-width: 600px;
}

.legal-objective-image {
    flex-shrink: 0;
    z-index: 1;
}

/* ============================================
   WORTH MATRIX PAGE
   ============================================ */

.worth-page {
    background: #FFFFFF;
}

.worth-main {
    padding-top: 140px;
    padding-bottom: 80px;
    background:
        linear-gradient(0deg, #FFFFFF, #FFFFFF),
        linear-gradient(0deg, #ECFDF5, #ECFDF5),
        radial-gradient(141.42% 141.42% at 100% 100%, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 40%),
        radial-gradient(141.42% 141.42% at 0% 0%, rgba(47, 237, 154, 0.10) 0%, rgba(47, 237, 154, 0) 40%);
}

.worth-hero-section {
    padding-bottom: 40px;
}

.worth-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.worth-hero-word {
    color: #020617;
}

.worth-hero-highlight {
    color: #2FED9A;
}

.worth-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 620px;
    margin-bottom: 32px;
}

.worth-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.worth-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 25px 60px -32px rgba(15, 23, 42, 0.35),
        0 2px 4px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.worth-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.worth-card-text {
    font-size: 12px;
    color: #6B7280;
    flex: 1;
}

.worth-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.worth-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
}

.worth-card-cta {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #020617;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.worth-gems-section {
    padding: 40px 0 0;
}

.worth-gems-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.worth-gems-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #020617;
}

.worth-gems-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
}

.worth-gems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.worth-gem-card {
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 25px 60px -32px rgba(15, 23, 42, 0.35),
        0 2px 4px rgba(15, 23, 42, 0.10);
}

.worth-gem-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.worth-gem-body {
    padding: 18px 18px 20px;
}

/* ============================================
   DASHBOARD PAGE
   ============================================ */

.dashboard-page {
    background: #F3F6FB;
}

.dashboard-main {
    padding-top: 140px;
    padding-bottom: 80px;
}

.dashboard-hero-section {
    margin-bottom: 24px;
}

.dashboard-welcome-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    min-width: 0;
    box-shadow:
        0 26px 60px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.3);
}

.dashboard-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.dashboard-avatar-wrap {
    position: relative;
}

.dashboard-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid #2FED9A;
    box-shadow: 0 20px 45px -20px rgba(16, 185, 129, 0.9);
}

.dashboard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-avatar-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: #020617;
    color: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 14px 30px -16px rgba(15, 23, 42, 0.8);
}

.dashboard-profile-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-greeting {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.dashboard-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #020617;
}

.dashboard-role-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.dashboard-meta-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px 18px;
    flex: 1 1 0;
    min-width: 0;
}

.dashboard-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dashboard-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.dashboard-meta-value {
    font-size: 13px;
    font-weight: 600;
    color: #020617;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}

.dashboard-tabs {
    margin-top: 24px;
    background: rgba(2, 6, 23, 0.95); /* #020617F2 */
    border-radius: 40px;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 25px 50px -12px #00000040;
    backdrop-filter: blur(40px);
}

.dashboard-tab {
    flex: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 72px;
    padding: 0 12px;
    border-radius: 32px;
    border: none;
    background: transparent;
    color: #9CA3AF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

a.dashboard-tab {
    text-decoration: none;
}

a.dashboard-tab:hover {
    color: #E5E7EB;
    text-decoration: none;
}

.dashboard-tab i {
    font-size: 14px;
}

.dashboard-tab-active {
    width: 250px;
    flex: 0 0 250px;
    height: 72px;
    border-radius: 32px;
    border-left: 9px solid rgba(0,0,0,0.12);
    background: #2FED9A;
    color: #022C22;
    box-shadow: 0 24px 55px -22px rgba(47, 237, 154, 0.75);
}

.dashboard-content-section {
    margin-top: 32px;
}

.dashboard-content-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.dashboard-sidebar {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 18px 0;
    box-shadow:
        0 26px 60px -30px rgba(15, 23, 42, 0.4),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.dashboard-sidebar-header {
    padding: 0 22px 12px;
}

.dashboard-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6B7280;
}

.dashboard-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dashboard-nav-item {
    width: 100%;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    color: #4B5563;
    text-decoration: none;
}

a.dashboard-nav-item {
    text-decoration: none;
    color: #4B5563;
}

a.dashboard-nav-item:hover {
    background: rgba(16, 185, 129, 0.05);
    text-decoration: none;
}

.dashboard-nav-bullet {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #2FED9A;
    background: #2FED9A;
}

.dashboard-nav-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #CBD5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #9CA3AF;
}

.dashboard-nav-text {
    font-size: 13px;
    font-weight: 500;
}

.dashboard-nav-item-active {
    background: rgba(16, 185, 129, 0.08);
}

.dashboard-nav-heart {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #FFFFFF;
}

.dashboard-nav-icon-active {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #FFFFFF;
}

.dashboard-main-panel {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 22px 24px 24px;
    box-shadow:
        0 26px 60px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.dashboard-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.dashboard-panel-header-single {
    justify-content: flex-start;
}

.identity-panel-header {
    margin-bottom: 18px;
}

.dashboard-panel-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.dashboard-panel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #020617;
}

.dashboard-panel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #F3F4F6;
}

.dashboard-search i {
    font-size: 12px;
    color: #9CA3AF;
}

.dashboard-search input {
    border: none;
    background: transparent;
    font-size: 12px;
    outline: none;
    min-width: 160px;
}

.dashboard-go-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.dashboard-property-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-property-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 24px;
    background: #F9FAFB;
}

.identity-card {
    border-radius: 28px;
    background: #F1F5F9;
    padding: 22px 26px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.identity-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
}

.identity-row + .identity-row {
    margin-top: 18px;
}

.identity-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.identity-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.identity-value {
    font-size: 13px;
    font-weight: 600;
    color: #020617;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 4px;
}

.identity-value-accent {
    color: #16A34A;
}

.identity-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.identity-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.identity-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid #2FED9A;
    background: #ECFDF5;
    color: #0F172A;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.identity-edit-btn:hover {
    background: #D1FAE5;
}

.identity-edit-btn i {
    font-size: 12px;
}

.identity-export-btn i {
    font-size: 12px;
}

.edit-identity-card {
    border-radius: 28px;
    background: #F1F5F9;
    padding: 26px 30px 24px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.edit-identity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 32px;
}

.edit-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.edit-field-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.edit-field-input {
    border-radius: 999px;
    border: none;
    background: #E5E7EB;
    padding: 10px 16px;
    font-size: 12px;
    color: #111827;
    outline: none;
}

.edit-field-input[readonly] {
    color: #6B7280;
}

.edit-identity-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.edit-identity-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at 0% 0%, #4ADE80 0%, #2FED9A 40%, #16A34A 100%);
    box-shadow: 0 24px 55px -24px rgba(47, 237, 154, 0.85);
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
}

.edit-identity-btn i {
    font-size: 12px;
}

.security-card {
    border-radius: 28px;
    background: #F1F5F9;
    padding: 26px 30px 24px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

/* Selling / Renting Advice Cards */
.selling-advice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 24px;
}

.advice-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 24px 22px 20px;
    box-shadow:
        0 26px 60px -30px rgba(15, 23, 42, 0.35),
        0 0 0 1px rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.advice-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.advice-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    font-size: 14px;
}

.advice-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #020617;
}

.advice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11px;
    color: #4B5563;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.advice-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid #CBD5E1;
    background: #F9FAFB;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.advice-cta i {
    font-size: 11px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 32px;
}

.security-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.security-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.security-input-wrapper {
    position: relative;
}

.security-input {
    width: 100%;
    border-radius: 999px;
    border: none;
    background: #E5E7EB;
    padding: 10px 16px 10px 34px;
    font-size: 12px;
    color: #111827;
    outline: none;
}

.security-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9CA3AF;
}

.security-input.security-input-plain {
    padding-left: 16px;
}

.security-footer {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.security-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at 0% 0%, #4ADE80 0%, #2FED9A 40%, #16A34A 100%);
    box-shadow: 0 24px 55px -24px rgba(47, 237, 154, 0.85);
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
}

.security-btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2FED9A;
    font-size: 12px;
}

.security-caption {
    font-size: 10px;
    color: #9CA3AF;
    text-align: center;
}

/* Dashboard Services - Market Your Home */
.services-main-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 32px 34px 30px;
    box-shadow:
        0 30px 70px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.services-header {
    text-align: center;
    margin-bottom: 26px;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #020617;
    margin-bottom: 6px;
}

.services-title-highlight {
    color: #2FED9A;
}

.services-subtitle {
    font-size: 12px;
    color: #9CA3AF;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 26px;
}

.services-intro {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.8;
}

.services-intro p + p {
    margin-top: 10px;
}

.services-intro-link {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #020617;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.service-card {
    border-radius: 26px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.service-card-mint {
    background: #E0FDF0;
}

.service-card-peach {
    background: #FDEDE4;
}

.service-card-media img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 8px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.service-card-cta {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #022C22;
    cursor: pointer;
}

/* Homepage services grid override: keep 4 cards in one horizontal row */
.services-section .services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
}

.services-section .service-card {
    width: 290px;
    height: 280px;
    border-radius: 40px;
    border-width: 3px;
    border-style: solid;
    border-color: #B1F0D2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-view-more-mobile {
    display: none;
}

@media (max-width: 767px) {
    .services-section .services-grid.services-grid--mobile-collapsible:not(.is-expanded) {
        display: none !important;
    }

    .services-section .services-grid.services-grid--mobile-collapsible.is-expanded {
        display: flex !important;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 16px;
        padding-bottom: 0;
    }

    .services-section .services-grid.services-grid--mobile-collapsible.is-expanded .service-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .services-view-more-mobile {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        padding: 14px 20px;
        border-radius: 12px;
        border: 2px solid #2FED9A;
        background: #FFFFFF;
        color: #020617;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.2s, color 0.2s;
    }

    .services-view-more-mobile:hover {
        background: #F0FDF4;
    }
}

@media (min-width: 768px) {
    .services-view-more-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .dashboard-page .services-main-card .services-grid.services-grid--mobile-collapsible:not(.is-expanded) {
        display: none !important;
    }

    .dashboard-page .services-main-card .services-grid.services-grid--mobile-collapsible.is-expanded {
        display: flex !important;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow-x: visible;
        gap: 16px;
        padding-bottom: 0;
    }

    .dashboard-page .services-main-card .services-grid.services-grid--mobile-collapsible.is-expanded .service-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.service-mini-card {
    border-radius: 24px;
    padding: 16px 16px 14px;
    background: #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-mini-media img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.service-mini-title {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 2px;
}

.service-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ensure 4-up layout for services grid inside dashboard */
.dashboard-page .services-main-card .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    flex-wrap: unset;
    overflow-x: visible;
    padding-bottom: 0;
}

/* Dashboard Lead Responses */
.responses-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 28px 32px 32px;
    box-shadow:
        0 30px 70px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.responses-header {
    margin-bottom: 18px;
}

.responses-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #020617;
    margin-bottom: 4px;
}

.responses-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #9CA3AF;
}

.responses-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.response-pill {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    align-items: stretch;
    background: #F3F4F6;
    border-radius: 8px;
    padding: 10px 12px 10px 18px;
    box-shadow:
        0 18px 45px -26px rgba(15, 23, 42, 0.6);
}

.response-main {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) repeat(2, minmax(0, 1.4fr));
    align-items: center;
    gap: 20px;
}

.response-name-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.response-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #020617;
}

.response-meta {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.response-meta-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.response-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
}

.response-value {
    font-size: 12px;
    color: #020617;
}

.response-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-reply-btn {
    min-width: 110px;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: #2FED9A;
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

/* Reply Modal for Lead Responses */
.reply-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.reply-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.reply-modal {
    position: relative;
    width: 520px;
    max-width: calc(100% - 40px);
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0 40px 90px -40px rgba(15, 23, 42, 0.8);
    padding: 28px 32px 26px;
}

.reply-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #020617;
    margin-bottom: 18px;
}

.reply-original-message {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.reply-original-message-label {
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.reply-original-message-body {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}

.reply-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: none;
    background: transparent;
    color: #9CA3AF;
    cursor: pointer;
    font-size: 14px;
}

.reply-form {
    margin-top: 4px;
}

.reply-textarea-wrapper {
    border-radius: 24px;
    background: #EFF6FF;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.reply-textarea {
    width: 100%;
    min-height: 160px;
    border: none;
    outline: none;
    resize: vertical;
    background: transparent;
    font-size: 13px;
    color: #020617;
}

.reply-actions {
    display: flex;
    justify-content: center;
}

.reply-send-btn {
    min-width: 130px;
    padding: 9px 24px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    box-shadow: 0 20px 50px -24px rgba(47, 237, 154, 0.8);
}

.dashboard-fav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-fav-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 18px;
    padding: 14px 16px;
    border-radius: 24px;
    background: #F9FAFB;
}

/* Dashboard Subscriptions */
.subscriptions-header {
    margin-bottom: 10px;
}

.subscriptions-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 18px 20px 22px;
    box-shadow:
        0 30px 70px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.subscriptions-table {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #020617 0%, #020617 0%, #F9FAFB 0%);
}

.subscriptions-table-header {
    display: grid;
    grid-template-columns: 1.5fr 2.3fr repeat(3, 1fr);
    padding: 10px 18px;
    background: #020617;
    color: #9CA3AF;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.subscriptions-header-cell {
    white-space: nowrap;
}

.subscriptions-empty-state {
    padding: 60px 18px 54px;
    background: #F9FAFB;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #D1D5DB;
}

/* Dashboard Order History */
.order-history-header {
    margin-bottom: 10px;
}

.order-history-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 18px 20px 22px;
    box-shadow:
        0 30px 70px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.order-history-table {
    border-radius: 20px;
    overflow: hidden;
}

.order-history-header-row {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1.3fr;
    padding: 10px 18px;
    background: #020617;
    color: #9CA3AF;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.order-history-header-cell {
    white-space: nowrap;
}

.order-history-body {
    background: #F9FAFB;
}

.order-history-row {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1.3fr;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #E5E7EB;
    align-items: center;
}

.order-history-row:last-child {
    border-bottom: none;
}

.order-history-product {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-history-title {
    font-size: 12px;
    font-weight: 700;
    color: #020617;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.order-history-sub {
    font-size: 11px;
    color: #6B7280;
}

.order-history-meta {
    font-size: 11px;
    color: #6B7280;
}

.order-history-status-cell {
    display: flex;
    justify-content: flex-end;
}

.order-history-status-badge {
    min-width: 82px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
}

.status-invalid {
    background: #FEE2E2;
    color: #B91C1C;
}

.status-pending {
    background: #DCFCE7;
    color: #15803D;
}

/* Discovery Hub Comparison Table (View Services) */
.discovery-panel {
    padding-bottom: 28px;
}

.discovery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.discovery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #020617;
}

.discovery-table-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 16px 18px 18px;
    box-shadow:
        0 30px 70px -30px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(148, 163, 184, 0.35);
}

.discovery-table-header,
.discovery-table-row,
.discovery-table-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    align-items: stretch;
}

.discovery-table-header {
    margin-bottom: 8px;
}

.discovery-feature-heading {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
    display: flex;
    align-items: flex-end;
}

.discovery-plan-heading {
    border-radius: 18px 18px 0 0;
    padding: 10px 4px 8px;
    text-align: center;
    color: #F9FAFB;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.discovery-plan-name {
    font-weight: 700;
}

.discovery-plan-sub {
    font-weight: 500;
}

.discovery-plan-metal {
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
}
.discovery-plan-bronze {
    background: linear-gradient(135deg, #F97316 0%, #B45309 100%);
}
.discovery-plan-silver {
    background: linear-gradient(135deg, #E5E7EB 0%, #9CA3AF 100%);
}
.discovery-plan-gold {
    background: linear-gradient(135deg, #FACC15 0%, #D97706 100%);
}
.discovery-plan-platinum {
    background: linear-gradient(135deg, #E5E7EB 0%, #4B5563 100%);
}

.discovery-table-row {
    font-size: 10px;
    border-bottom: 1px solid #E5E7EB;
}

.discovery-feature-cell {
    padding: 6px 6px 6px 0;
    color: #4B5563;
}

.discovery-value-cell {
    padding: 6px 4px;
    text-align: center;
    color: #020617;
}

.discovery-table-footer {
    padding-top: 10px;
}

.discovery-footer-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.discovery-proceed-btn {
    min-width: 118px;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
}

.discovery-proceed-metal,
.discovery-proceed-bronze {
    background: #E5E7EB;
    color: #4B5563;
}

.discovery-proceed-silver {
    background: #020617;
    color: #F9FAFB;
}

.discovery-proceed-gold,
.discovery-proceed-platinum {
    background: #2FED9A;
    color: #022C22;
}

.dashboard-fav-image img {
    width: 100%;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
}

.dashboard-fav-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.dashboard-fav-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.dashboard-fav-title {
    font-size: 15px;
    font-weight: 700;
    color: #020617;
}

.dashboard-fav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard-fav-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    background: #2FED9A;
    color: #022C22;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.dashboard-fav-view-btn i {
    font-size: 12px;
}

.dashboard-fav-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #FFFFFF;
    box-shadow: 0 10px 24px -14px rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF4444;
    cursor: pointer;
}

.dashboard-property-image img {
    width: 100%;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
}

.dashboard-property-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-property-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.dashboard-property-title {
    font-size: 15px;
    font-weight: 700;
    color: #020617;
}

.dashboard-property-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 11px;
    color: #6B7280;
}

.dashboard-status-active {
    color: #16A34A;
    font-weight: 600;
}

.dashboard-property-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.dashboard-price {
    font-size: 18px;
    font-weight: 800;
    color: #020617;
}

.dashboard-price-meta {
    font-size: 11px;
    color: #6B7280;
}

.dashboard-property-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.dashboard-btn {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

a.dashboard-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.dashboard-btn-primary {
    border: none;
    background: #2FED9A;
    color: #022C22;
}

.dashboard-btn-ghost {
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #020617;
}

.dashboard-more-btn {
    align-self: flex-end;
    border: none;
    background: transparent;
    color: #9CA3AF;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .dashboard-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-content-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-main {
        padding-top: 120px;
    }

    .dashboard-welcome-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 18px;
        gap: 20px;
    }

    .dashboard-profile {
        width: 100%;
    }

    .dashboard-meta-grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        gap: 14px 0;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
        border-radius: 24px;
    }

    .dashboard-property-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-property-actions {
        align-items: flex-start;
    }

    .dashboard-fav-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-fav-actions {
        justify-content: flex-start;
    }

    .identity-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .edit-identity-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .security-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-secondary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-page .services-main-card .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .response-pill {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 8px;
    }

    .response-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .response-actions {
        justify-content: flex-start;
    }
}

.worth-gem-price {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 6px;
}

.worth-gem-title {
    font-size: 16px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 4px;
}

.worth-gem-location {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 10px;
}

.worth-gem-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #6B7280;
    margin-bottom: 14px;
}

.worth-gem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 999px;
    background: #2FED9A;
    color: #022C22;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
}

/* ============================================
   LISTING PACKAGES PAGE
   ============================================ */

.listing-page {
    background: #FFFFFF;
}

.advertising-packages-page {
    background:
        linear-gradient(0deg, var(--color-white-solid, #FFFFFF), var(--color-white-solid, #FFFFFF)),
        linear-gradient(0deg, var(--color-grey-96, #ECFDF5), var(--color-grey-96, #ECFDF5)),
        radial-gradient(141.42% 141.42% at 100% 100%, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 40%),
        radial-gradient(141.42% 141.42% at 0% 0%, rgba(47, 237, 154, 0.1) 0%, rgba(47, 237, 154, 0) 40%);
}

.listing-main {
    padding-top: 140px;
    padding-bottom: 80px;
    background: transparent !important;
}

/* Apply the same layered background design on the Advertise With Us page only */
.advertising-packages-page .listing-main {
    background: transparent !important;
}

.listing-hero-section {
    padding-bottom: 32px;
}

.listing-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 8px;
}

.listing-hero-word {
    color: #020617;
}

.listing-hero-highlight {
    color: #2FED9A;
}

.listing-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 640px;
    margin-bottom: 24px;
}

.listing-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.listing-toggle-row {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        0px 8px 10px -6px #0000001A,
        0px 20px 25px -5px #0000001A,
        0px 0px 0px 8px #F1F5F980;
    backdrop-filter: blur(24px);
}

.listing-toggle-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6B7280;
    cursor: pointer;
}

.listing-toggle-btn-active {
    background: #2FED9A;
    color: #022C22;
    border-color: #16A34A;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.listing-secondary-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.listing-secondary-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    white-space: nowrap;
}

.listing-secondary-btn-primary {
    background: #020617;
    color: #E5E7EB;
    box-shadow: 0px 22px 45px -12px rgba(15, 23, 42, 0.75);
}

.listing-secondary-btn-accent {
    background: #2FED9A;
    color: #022C22;
    box-shadow: 0px 24px 50px -12px rgba(47, 237, 154, 0.65);
}

.listing-packages-wrapper {
    margin-top: 32px;
}

.listing-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

/* ============================================
   ADVERTISING PACKAGES (Advertise With Us)
   ============================================ */
.advertising-packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1280px;
}

.advertising-card {
    background: var(--color-white-solid, #FFFFFF);
    border: 1px solid var(--border, #1A1A1A33);
    border-radius: 48px;
    width: 284px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    padding: 47.8px 47.8px 33.1px 47.8px;
    box-shadow: 0px 1px 2px 0px #0000000D;
    transition: all 0.2s ease;
    max-width: 100%;
}

.advertising-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.advertising-card-icon {
    margin-bottom: 14px;
}

.advertising-card-icon-inner {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #F3F4F6;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    box-shadow: 0px 18px 40px rgba(15, 23, 42, 0.10);
    font-size: 20px;
}

.advertising-card-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #020617;
    margin-bottom: 14px;
    line-height: 1.25;
}

.advertising-card-price {
    font-size: 22px;
    font-weight: 900;
    color: #020617;
    margin-bottom: 18px;
}

.advertising-card-dot-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertising-card-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid #CBD5E1;
    background: #FFFFFF;
    position: relative;
}

.advertising-card-dot::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: #2FED9A;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s ease;
}

/* Featured = accent styling only; selection uses .advertising-card-selected */
.advertising-card-featured {
    border-color: rgba(148, 163, 184, 0.4);
}

.advertising-card-featured .advertising-card-icon-inner {
    background: #2FED9A;
    border-color: #2FED9A;
    color: #022C22;
}

.advertising-card-featured .advertising-card-title {
    color: #16A34A;
}

.advertising-card-featured .advertising-card-price {
    color: #16A34A;
}

.advertising-card-selected .advertising-card-dot {
    border-color: #2FED9A;
}

.advertising-card--selectable {
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.advertising-card--selectable:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.advertising-card-selected {
    border: 2px solid #2dfc8f;
    box-shadow: 0 0 20px rgba(45, 252, 143, 0.45), 0 12px 32px rgba(47, 237, 154, 0.18);
}

.advertising-packages-page .listing-cta-hint {
    text-align: center;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 12px;
}

.advertising-payment-hint {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

.advertising-selected-summary {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #047857;
    margin: 0 0 12px;
}

.advertising-payment-row {
    flex-direction: column;
    align-items: center;
}

.advertising-card--selectable:focus-visible {
    outline: 2px solid #2FED9A;
    outline-offset: 3px;
}

.advertising-payment-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 22px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    max-width: min(92vw, 440px);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.advertising-payment-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.advertising-payment-toast.success {
    background: #059669;
    color: #fff;
}

.advertising-payment-toast.error {
    background: #DC2626;
    color: #fff;
}

/* Filled radio only on the actually selected card (not merely "featured") */
.advertising-card-selected .advertising-card-dot::after {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .advertising-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .advertising-packages-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .advertising-card {
        width: 100%;
        height: auto;
        padding: 32px 20px 20px 20px;
    }
}

/* Process Payment button style (Advertise With Us page only) */
.advertising-packages-page .listing-primary-cta {
    width: 484px;
    height: 81px;
    border-radius: 9999px;
    background: var(--Primary-color, #2FED9A);
    box-shadow: 0px 25px 50px -12px #00000040;
    border: none;
    padding: 28px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    color: #020617;
    white-space: nowrap;
    transition: all 0.2s ease;
    max-width: 100%;
}

.advertising-packages-page .listing-primary-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #020617;
    line-height: 1;
}

.advertising-packages-page .listing-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertising-packages-page .listing-primary-cta:hover {
    filter: brightness(0.98);
}

/* Bigger "Contact Us" card (Advertise With Us page only) */
.advertising-packages-page .listing-bespoke-card {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.14),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
}

.advertising-packages-page .listing-bespoke-adv-left {
    flex: 0 0 240px;
    background: #0F172A;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.advertising-packages-page .listing-bespoke-adv-left-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    font-size: 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.advertising-packages-page .listing-bespoke-adv-left-title-accent {
    color: #2FED9A;
}

.advertising-packages-page .listing-bespoke-adv-left-shield {
    margin-top: 18px;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 34px;
}

.advertising-packages-page .listing-bespoke-adv-right {
    flex: 1;
    background: #FFFFFF;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.advertising-packages-page .listing-bespoke-adv-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advertising-packages-page .listing-bespoke-adv-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ECFDF5;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
    font-size: 16px;
}

.advertising-packages-page .listing-bespoke-adv-item-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
    line-height: 1.2;
}

.advertising-packages-page .listing-bespoke-adv-item-value {
    font-size: 13px;
    font-weight: 700;
    color: #020617;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .advertising-packages-page .listing-bespoke-card {
        flex-direction: column;
        border-radius: 24px;
    }

    .advertising-packages-page .listing-bespoke-adv-left {
        flex: 0 0 auto;
        border-bottom-left-radius: 0;
        width: 100%;
    }

    .advertising-packages-page .listing-bespoke-adv-right {
        grid-template-columns: 1fr;
        padding: 18px 16px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-main {
    padding-bottom: 100px;
}

.about-hero-section {
    padding-bottom: 40px;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 720px;
    margin-bottom: 32px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.about-card {
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.14),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 26px 28px 28px;
    margin-bottom: 24px;
}

.about-card-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.about-card-body {
    font-size: 14px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 10px;
}

.about-subheading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748B;
    margin: 20px 0 12px;
}

.about-certificate-gallery {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.about-certificate-gallery img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    padding: 8px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .about-certificate-gallery {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .about-certificate-gallery img {
        max-height: 240px;
    }
}

.about-founder-card {
    text-align: left;
}

.about-founder-photo-wrap {
    margin: 18px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* Figma: 228×231.21, radius 12px, 8px border #F2F9FF (Card Bg) */
.about-founder-card .about-founder-photo {
    width: 228px;
    height: 231.21px;
    max-width: min(228px, 100%);
    display: block;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid #F2F9FF;
    box-sizing: border-box;
}

@media (max-width: 320px) {
    .about-founder-card .about-founder-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 228 / 231.21;
    }
}

/* Figma: vertical stack, gap 7px, padding 16px 8px; width hugs name (single line) */
.about-founder-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 16px 8px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    box-sizing: border-box;
    height: auto;
    text-align: center;
}

/* Figma: Mr. Tejasvi Kapoor — Poppins 700, 24px / 32px, #0F172A — one line */
.about-founder-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
    color: #0F172A;
    margin: 0;
    white-space: nowrap;
}

/* Figma: Founder & Chairman — Poppins 700, 14px / 20px, 0.7px tracking, #DC2626 */
.about-founder-role {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #DC2626;
    margin: 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 380px) {
    .about-founder-name {
        white-space: normal;
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */

.testimonial-main {
    padding-bottom: 100px;
}

.testimonial-hero-section {
    padding-bottom: 40px;
}

.testimonial-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.testimonial-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.testimonial-hero-highlight {
    color: #2FED9A;
}

.testimonial-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 620px;
    margin-bottom: 32px;
}

.testimonial-form-card {
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.18),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 32px 36px 34px;
    margin-bottom: 40px;
}

.testimonial-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
}

.testimonial-textarea-group,
.testimonial-upload-group,
.testimonial-consent-group {
    margin-top: 18px;
}

.testimonial-textarea-group label,
.testimonial-upload-group label,
.testimonial-consent-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
    margin-bottom: 6px;
}

.testimonial-textarea-group textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    padding: 12px 14px;
    font-size: 13px;
    resize: vertical;
}

.testimonial-upload-box {
    position: relative;
    border-radius: 24px;
    border: 1px dashed #D1D5DB;
    background: #F9FAFB;
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.testimonial-upload-box.testimonial-upload-has-file {
    border-color: #2FED9A;
    background: #F0FDF8;
}

.testimonial-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.testimonial-file-name {
    font-size: 11px;
    font-weight: 600;
    color: #059669;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.testimonial-upload-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #020617;
    color: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.testimonial-upload-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-upload-sub {
    font-size: 11px;
    color: #9CA3AF;
}

.testimonial-radio-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.testimonial-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4B5563;
    cursor: pointer;
}

.testimonial-radio input {
    display: none;
}

.testimonial-radio-mark {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid #D1D5DB;
    position: relative;
}

.testimonial-radio input:checked + .testimonial-radio-mark {
    border-color: #2FED9A;
}

.testimonial-radio input:checked + .testimonial-radio-mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: #2FED9A;
}

.testimonial-submit-row {
    margin-top: 24px;
    display: flex;
    justify-content: stretch;
    width: 100%;
}

.testimonial-submit-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.testimonial-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1A1A1A;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    max-width: min(90vw, 420px);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.testimonial-toast.success {
    background: #059669;
}

.testimonial-toast.error {
    background: #DC2626;
}

.testimonial-stories-section {
    margin-top: 20px;
}

.testimonial-stories-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9CA3AF;
    margin-bottom: 6px;
}

.testimonial-stories-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.testimonial-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow:
        0px 18px 40px rgba(15, 23, 42, 0.12),
        0px 0px 0px 1px rgba(148, 163, 184, 0.28);
    padding: 20px 22px 18px;
}

.testimonial-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #DCFCE7;
    color: #16A34A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.testimonial-card-quote {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 16px;
}

.testimonial-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-card-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-card-role {
    font-size: 11px;
    color: #6B7280;
}

@media (max-width: 1024px) {
    .testimonial-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .testimonial-stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonial-stories-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================
   TERMS & CONDITIONS PAGE
   ============================================ */

.terms-main {
    padding-bottom: 100px;
}

.terms-hero-section {
    padding-bottom: 40px;
}

.terms-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.terms-hero-subtitle {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.terms-layout {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1.5fr);
    gap: 20px;
    align-items: flex-start;
}

.terms-sidebar {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow:
        0px 16px 40px rgba(15, 23, 42, 0.12),
        0px 0px 0px 1px rgba(148, 163, 184, 0.3);
    padding: 18px 18px 20px;
    position: sticky;
    top: 120px;
}

.terms-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 420px;
    overflow-y: auto;
}

.terms-nav-list li + li {
    margin-top: 6px;
}

.terms-nav-list a {
    display: block;
    font-size: 12px;
    color: #6B7280;
    padding: 6px 10px;
    border-radius: 999px;
    text-decoration: none;
}

.terms-nav-list a:hover {
    background: #F3F4F6;
    color: #111827;
}

.terms-content-card {
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.14),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 26px 30px 30px;
}

.terms-section + .terms-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #F3F4F6;
}

.terms-section-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.terms-paragraph {
    font-size: 13px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 8px;
}

.terms-section-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.terms-column {
    min-width: 0;
}

.terms-highlight-box {
    margin-top: 10px;
    border-radius: 18px;
    background: #FEF3C7;
    border: 1px solid #FBBF24;
    padding: 14px 16px;
}

.terms-highlight-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.terms-cta-row {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .terms-sidebar {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .terms-section-split {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ============================================
   PROPERTY COST CALCULATOR PAGE
   ============================================ */

.pcc-top-card {
    margin-top: 32px;
    margin-bottom: 32px;
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    padding: 28px 32px;
}

.pcc-top-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 24px;
}

.pcc-field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
    margin-bottom: 6px;
}

/* Loan calculator page field labels — Figma spec: Poppins 700, 10px, lh 10px, ls 1px, #5B5B5B, Uppercase */
.loan-page .pcc-field label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5B5B5B;
    margin-bottom: 8px;
    display: block;
}

.pcc-field input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pcc-field input:focus {
    border-color: #2FED9A;
    box-shadow: 0 0 0 3px rgba(47, 237, 154, 0.15);
    background: #fff;
}
.pcc-field input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.pcc-main-card {
    margin-top: 12px;
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow:
        0px 24px 60px rgba(15, 23, 42, 0.16),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    overflow: hidden;
}

.pcc-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    background: #020617;
    color: #E5E7EB;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.pcc-main-header-left,
.pcc-main-header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pcc-main-header-left span:first-child {
    width: 40px;
}

.pcc-section {
    padding: 12px 32px 20px;
    border-top: 1px solid #F3F4F6;
}

.pcc-section-title {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #9CA3AF;
    padding: 12px 0;
}

.pcc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 24px;
}

.pcc-row-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1.3;
}

.pcc-serial {
    width: 28px;
    font-size: 11px;
    color: #9CA3AF;
}

.pcc-particular {
    font-size: 12px;
    color: #111827;
}

.pcc-row-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    flex: 1;
    align-items: start;
}

.pcc-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pcc-input-group-label {
    display: none;
}

.pcc-input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    font-size: 12px;
    text-align: center;
}

/* ── Per-annexure subtotal row ── */
.pcc-subtotal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px 10px 0;
    border-top: 2px solid #E5E7EB;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #374151;
}
.pcc-subtotal-val {
    color: #2FED9A;
    font-size: 14px;
    font-weight: 700;
}
/* ── Amount (readonly) input styling ── */
.pcc-amount {
    background: #F3F4F6 !important;
    color: #6B7280;
    cursor: default;
    font-weight: 600;
}

.pcc-total-bar {
    margin-top: 8px;
    background: #020617;
    color: #E5E7EB;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pcc-total-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pcc-total-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022C22;
}

.pcc-total-label {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.pcc-total-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6B7280;
    margin: 0;
}

.pcc-total-right {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
}

.pcc-total-currency {
    color: #2FED9A;
}

.pcc-total-value {
    font-size: 20px;
}

.pcc-actions-row {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    margin-top: 32px;
}

.pcc-secondary-cta {
    width: 428.29px;
    height: 81.2px;
    padding: 28px 96px;
    box-sizing: border-box;
    border-radius: 40px;

    background: #FFFFFF;
    border: 1px solid #F1F5F9;

    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.10),
        0px 20px 25px -5px rgba(0, 0, 0, 0.10);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 1;
}

.pcc-secondary-cta:hover {
    filter: brightness(0.98);
}

.pcc-primary-cta {
    width: 315px;
    height: 80px;
    padding: 28px 96px;
    box-sizing: border-box;
    gap: 32px;
    border-radius: 40px;
    border: none;
    background: var(--Primary-color, #2FED9A);
    box-shadow: 0px 25px 50px -12px #00000040;
    opacity: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    color: #020617;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pcc-primary-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #020617;
    line-height: 1;
}

.pcc-primary-cta:hover {
    filter: brightness(0.98);
}

/* ── Property Cost Calculator: page tone + responsive ── */
.property-cost-page {
    background:
        linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 38%, #FFFFFF 100%);
}

.property-cost-page .listing-main {
    padding-bottom: 48px;
}

.property-cost-page .listing-hero-section .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

@media (max-width: 1024px) {
    .pcc-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 20px;
    }
}

/* Tablet + mobile: annexure table stacks; desktop header hidden (per-row labels show) */
@media (max-width: 991px) {
    .pcc-main-card {
        border-radius: 22px;
    }

    .pcc-main-header {
        display: none;
    }

    .pcc-section {
        padding: 10px 20px 16px;
    }

    .pcc-section-title {
        padding: 10px 0;
    }

    .pcc-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .pcc-section .pcc-row:last-of-type {
        border-bottom: none;
        padding-bottom: 6px;
    }

    .pcc-row-left {
        flex: none;
        gap: 12px;
    }

    .pcc-serial {
        width: 24px;
        flex-shrink: 0;
    }

    .pcc-particular {
        font-size: 13px;
        line-height: 1.4;
    }

    .pcc-row-right {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }

    .pcc-input-group-label {
        display: block;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #94A3B8;
    }

    .pcc-input {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 14px;
        min-height: 44px;
        box-sizing: border-box;
    }

    .pcc-subtotal-bar {
        padding: 12px 0 10px;
        margin-top: 8px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pcc-total-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 20px;
        text-align: center;
    }

    .pcc-total-left {
        justify-content: center;
        text-align: left;
    }

    .pcc-total-right {
        justify-content: center;
    }

    .pcc-actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 24px;
    }

    .pcc-primary-cta,
    .pcc-secondary-cta {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 52px;
        padding: 16px 24px;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .property-cost-page .listing-main {
        padding-top: 96px;
        padding-bottom: 40px;
    }

    .property-cost-page .listing-hero-title {
        font-size: clamp(26px, 7.5vw, 40px);
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .property-cost-page .listing-hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pcc-top-card {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 16px 16px 18px;
        border-radius: 22px;
    }

    .pcc-top-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .pcc-field label {
        margin-bottom: 8px;
        letter-spacing: 0.12em;
    }

    .pcc-field input {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 16px;
    }

    .pcc-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pcc-total-bar {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .pcc-total-bar {
        padding: 16px 14px;
    }

    .pcc-total-value {
        font-size: 22px;
    }
}

.listing-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 28px;
    padding: 22px 24px;
    box-shadow:
        0px 18px 40px rgba(15, 23, 42, 0.12),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
}

.listing-card-inner {
    position: relative;
    z-index: 1;
}

.listing-card::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 24px;
    background-image: url('../images/listing-card-noise.png');
    opacity: 0.06;
    pointer-events: none;
}

.listing-card-icon {
    margin-bottom: 16px;
}

.listing-card-icon-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #020617;
    box-shadow: 0px 18px 40px rgba(15, 23, 42, 0.6);
    color: #2FED9A;
    font-size: 20px;
}

.listing-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #020617;
    margin-bottom: 10px;
}

.listing-card-description {
    font-size: 12px;
    line-height: 1.7;
    color: #6B7280;
    min-height: 56px;
    margin-bottom: 18px;
}

.listing-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #F9FAFB;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #020617;
    cursor: pointer;
    transition: all 0.2s ease;
}

.listing-card-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #2FED9A;
    color: #022C22;
    font-size: 10px;
}

.listing-card-cta:hover {
    background: #020617;
    color: #F9FAFB;
    border-color: transparent;
}

.listing-card-cta:hover .listing-card-cta-icon {
    background: #F9FAFB;
    color: #16A34A;
}

/* Responsive adjustments for Listing Packages */
@media (max-width: 1024px) {
    .listing-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .listing-main {
        padding-top: 120px;
    }

    .listing-hero-title {
        font-size: 36px;
    }

    .listing-packages-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .listing-bespoke-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .listing-bespoke-contacts {
        text-align: left;
    }
}

.listing-bespoke-section {
    padding-top: 56px;
}

.listing-bespoke-card {
    background: radial-gradient(120% 180% at 0% 0%, #2FED9A 0%, #16A34A 16%, #020617 55%, #000000 100%);
    border-radius: 36px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E5E7EB;
}

.listing-bespoke-kicker {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #2FED9A;
    margin-bottom: 10px;
}

.listing-bespoke-copy {
    font-size: 15px;
    color: #E5E7EB;
    max-width: 520px;
}

.listing-bespoke-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
    font-size: 13px;
}

.listing-bespoke-label {
    color: #9CA3AF;
    margin-right: 6px;
}

 .listing-bespoke-value {
    color: #FFFFFF;
    font-weight: 600;
}

/* ============================================
   HELP & ASSISTANCE PAGE
   ============================================ */

.help-page {
    background: #E6FFF3;
}

.help-main {
    padding-top: 140px;
    padding-bottom: 80px;
}

.help-hero-section {
    padding-bottom: 40px;
}

.help-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.help-hero-word {
    color: #020617;
}

.help-hero-highlight {
    color: #2FED9A;
}

.help-hero-subtitle {
    font-size: 14px;
    color: #6B7280;
    max-width: 520px;
    margin-bottom: 32px;
}

.help-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.help-knowledge-card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 20px 18px;
    box-shadow:
        0px 28px 60px -24px rgba(15, 23, 42, 0.35),
        0px 0px 0px 1px rgba(148, 163, 184, 0.4);
}

.help-knowledge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
}

.help-knowledge-nav {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.help-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-nav-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECFDF5;
    color: #047857;
    font-size: 12px;
}

.help-nav-text {
    font-size: 12px;
    font-weight: 500;
    color: #4B5563;
}

.help-nav-item-active {
    background: linear-gradient(90deg, #2FED9A 0%, #16A34A 60%, #059669 100%);
    box-shadow: 0px 22px 40px -20px rgba(16, 185, 129, 0.9);
}

.help-nav-item-active .help-nav-icon {
    background: #FFFFFF;
    color: #16A34A;
}

.help-nav-item-active .help-nav-text {
    color: #FFFFFF;
}

.help-faq-card {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 24px 26px 24px;
    box-shadow:
        0px 28px 70px -30px rgba(15, 23, 42, 0.45),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
}

.help-faq-title-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 18px;
}

.help-faq-kicker {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #020617;
}

.help-faq-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
}

.help-faq-feature-card {
    border-radius: 18px;
    background: linear-gradient(120deg, #ECFDF5 0%, #FFFFFF 65%);
    padding: 14px 16px 14px;
    margin-bottom: 18px;
    box-shadow: 0px 14px 30px -20px rgba(16, 185, 129, 0.8);
}

.help-faq-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.help-faq-feature-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #16A34A;
}

.help-faq-feature-status {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2FED9A;
    color: #FFFFFF;
    font-size: 10px;
}

.help-faq-feature-question {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 4px;
}

.help-faq-feature-answer {
    font-size: 12px;
    color: #4B5563;
    max-width: 520px;
}

.help-faq-list {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
}

.help-faq-item {
    border: none;
    background: transparent;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.help-faq-item-text {
    font-size: 12px;
    font-weight: 600;
    color: #020617;
}

.help-faq-item-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #6B7280;
}

.help-sales-section {
    padding: 8px 0 0;
}

.help-sales-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 30px 34px 30px;
    box-shadow:
        0px 30px 70px -30px rgba(15, 23, 42, 0.45),
        0px 0px 0px 1px rgba(148, 163, 184, 0.35);
}

.help-sales-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.help-sales-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2FED9A;
    box-shadow: 0px 30px 70px -24px rgba(15, 23, 42, 0.75);
    font-size: 22px;
}

.help-sales-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
}

.help-sales-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #020617;
}

.help-sales-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.help-sales-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9CA3AF;
    margin-bottom: 6px;
}

.help-sales-meta {
    font-size: 11px;
    color: #6B7280;
    margin-bottom: 2px;
}

.help-sales-email {
    font-size: 12px;
    font-weight: 600;
    color: #EF4444;
    text-decoration: none;
}

.help-sales-email:hover {
    text-decoration: underline;
}

.help-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.help-contact-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}

.help-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.help-contact-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
}

.help-contact-meta {
    font-size: 11px;
    color: #6B7280;
    margin-bottom: 2px;
}

.help-contact-email {
    font-size: 12px;
    font-weight: 600;
    color: #EF4444;
    text-decoration: none;
}

.help-contact-email:hover {
    text-decoration: underline;
}

.help-contact-phone {
    font-size: 12px;
    color: #1F2937;
    margin-top: 6px;
}

.help-contact-address {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.7;
}

.help-contact-map {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.help-map-card {
    background: #F3F4F6;
    border-radius: 24px;
    padding: 16px 18px 12px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: radial-gradient(circle at 10% 20%, #E5E7EB 0, transparent 55%), radial-gradient(circle at 80% 70%, #D1D5DB 0, transparent 60%);
}

.help-map-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.help-map-label {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
}

.help-map-btn {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    background: #020617;
    color: #F9FAFB;
    font-size: 11px;
    cursor: pointer;
}

.help-map-btn i {
    font-size: 10px;
}

.help-map-footer {
    margin-top: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
}

/* Responsive tweaks for Help & Assistance */
@media (max-width: 1024px) {
    .help-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .help-knowledge-card {
        max-width: 360px;
    }

    .help-contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .help-main {
        padding-top: 120px;
    }

    .help-hero-title {
        font-size: 34px;
    }

    .help-sales-grid,
    .help-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .help-sales-card {
        padding: 22px 18px 24px;
    }
}

.lady-justice-img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.legal-domains-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.domains-header {
    text-align: center;
    margin-bottom: 48px;
}

.domains-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.domains-subtitle {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.domain-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.domain-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.domain-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    border-radius: 12px;
}

.domain-icon i {
    font-size: 32px;
    color: #2FED9A;
}

.domain-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.4;
}

.legal-forms-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.forms-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.forms-header {
    margin-bottom: 40px;
}

.forms-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.forms-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.forms-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.forms-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #0F172A;
    font-weight: 500;
}

.form-check-icon {
    font-size: 20px;
    color: #2FED9A;
    flex-shrink: 0;
}

.legal-vault-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.vault-panel {
    background: #0F172A;
    border-radius: 16px;
    overflow: hidden;
}

.vault-header {
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.vault-header-left {
    flex: 1;
}

.vault-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.vault-subtitle {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vault-search-wrapper {
    position: relative;
    min-width: 300px;
}

.vault-search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
}

.vault-search-input::placeholder {
    color: #94A3B8;
}

.vault-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 16px;
}

.vault-content {
    background: #FFFFFF;
    padding: 24px 40px 40px;
    max-height: 600px;
    overflow-y: auto;
}

.vault-document-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vault-document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    transition: all 0.2s;
}

.vault-document-item:hover {
    background: #F1F5F9;
}

.document-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E2E8F0;
    border-radius: 8px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 24px;
    color: #475569;
}

.document-info {
    flex: 1;
}

.document-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.document-meta {
    font-size: 12px;
    color: #64748B;
}

.document-download-btn {
    background: #2FED9A;
    color: #0F172A;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.document-download-btn:hover {
    background: #26DD8A;
    transform: translateY(-1px);
}

.document-download-btn i {
    font-size: 12px;
}

.legal-disclaimer-section {
    padding: 60px 0;
    background: #F1F5F9;
    text-align: center;
}

.disclaimer-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.disclaimer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: #2FED9A;
    color: #0F172A;
    transform: translateY(-2px);
}

/* Responsive Styles for Legal Advisory Page */
@media (max-width: 1200px) {
    .domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .legal-objective-card {
        flex-direction: column;
        padding: 40px;
    }
    
    .legal-objective-image {
        width: 100%;
        text-align: center;
    }
    
    .lady-justice-img {
        max-width: 250px;
    }
    
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .forms-list-grid {
        grid-template-columns: 1fr;
    }
    
    .vault-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vault-search-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .legal-main-title {
        font-size: 36px;
    }
    
    .legal-subtitle {
        font-size: 16px;
    }
    
    .legal-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .legal-icon-circle i {
        font-size: 30px;
    }
    
    .legal-objective-title {
        font-size: 32px;
    }
    
    .legal-objective-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .domains-title {
        font-size: 28px;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .forms-card {
        padding: 32px 24px;
    }
    
    .forms-title {
        font-size: 24px;
    }
    
    .vault-header {
        padding: 24px;
    }
    
    .vault-content {
        padding: 20px 24px;
    }
    
    .vault-title {
        font-size: 24px;
    }
    
    .vault-document-item {
        flex-wrap: wrap;
    }
    
    .document-download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-main-title {
        font-size: 28px;
    }
    
    .legal-objective-title {
        font-size: 24px;
    }
    
    .legal-objective-text {
        font-size: 14px;
    }
}

/* ============================================
   URBAN MASTER PLANS PAGE
   ============================================ */

.master-plans-page {
    background: #FFFFFF;
    min-height: 100vh;
}

.master-plans-page .header-wrapper {
    position: static;
    padding-top: 0;
    background: #FFFFFF;
}

.master-plans-page .main-header {
    background: #FFFFFF;
}

.master-plans-main {
    padding-top: 0;
}

.master-plans-hero {
    padding: 60px 0 40px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.16), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.master-plans-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.master-plans-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.master-plans-icon i {
    font-size: 48px;
    color: #2FED9A;
    border: 2px solid #2FED9A;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-plans-title-content {
    flex: 1;
}

.master-plans-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.master-plans-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #2FED9A;
    margin: 0;
}

.master-plans-content-section {
    padding: 40px 0;
    background: #F9FAFB;
}

.master-plan-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.master-plan-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.master-plan-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.master-plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.master-plan-header-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E0F2FE;
    border-radius: 50%;
    flex-shrink: 0;
}

.master-plan-header-icon i {
    font-size: 24px;
    color: #0EA5E9;
}

.master-plan-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.master-plan-description {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.master-plan-description strong {
    color: #0F172A;
    font-weight: 700;
}

.master-plan-features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.master-plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon i {
    font-size: 12px;
    color: #0EA5E9;
}

.master-plan-right {
    display: flex;
    align-items: start;
}

.master-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.master-plan-info-card {
    background: #1E293B;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.info-card-icon i {
    font-size: 24px;
    color: #2FED9A;
}

.info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.info-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #E2E8F0;
    margin: 0;
}

.master-plan-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 32px;
}

.master-plan-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.master-plan-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-title {
    font-size: 18px;
    font-weight: 700;
    color: #2FED9A;
    margin: 0;
}

.column-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer-icon {
    font-size: 18px;
    color: #EF4444;
}

.master-plans-blueprints-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.blueprints-header {
    text-align: center;
    margin-bottom: 32px;
}

.blueprints-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.blueprints-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #2FED9A;
    border-radius: 2px;
}

.blueprints-subtitle {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
    margin-top: 20px;
}

.blueprints-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 48px;
}

.blueprints-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    color: #0F172A;
    transition: all 0.2s;
}

.blueprints-search-input:focus {
    outline: none;
    border-color: #2FED9A;
    box-shadow: 0 0 0 3px rgba(47, 237, 154, 0.1);
}

.blueprints-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 18px;
}

.blueprints-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blueprint-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s;
}

.blueprint-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.blueprint-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.blueprint-icon-left {
    font-size: 24px;
    color: #2FED9A;
}

.blueprint-icon-right {
    font-size: 24px;
    color: #CBD5E1;
}

.blueprint-card-content {
    flex: 1;
}

.blueprint-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.blueprint-city {
    font-size: 20px;
    font-weight: 700;
    color: #0EA5E9;
    margin: 0;
}

.blueprint-download-btn {
    width: 100%;
    background: #2FED9A;
    color: #0F172A;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.blueprint-download-btn:hover {
    background: #26DD8A;
    transform: translateY(-1px);
}

.blueprint-download-btn i {
    font-size: 12px;
}

/* Responsive Styles for Master Plans Page */
@media (max-width: 1200px) {
    .blueprints-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .master-plan-card-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .master-plan-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blueprints-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .master-plans-main-title {
        font-size: 36px;
    }
    
    .master-plans-subtitle {
        font-size: 16px;
    }
    
    .master-plans-icon {
        width: 60px;
        height: 60px;
    }
    
    .master-plans-icon i {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .master-plan-card {
        padding: 32px 24px;
    }
    
    .master-plan-title {
        font-size: 24px;
    }
    
    .master-plan-section-title {
        font-size: 24px;
    }
    
    .master-plan-grid {
        grid-template-columns: 1fr;
    }
    
    .blueprints-title {
        font-size: 28px;
    }
    
    .blueprints-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .master-plans-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .master-plans-main-title {
        font-size: 28px;
    }
    
    .master-plan-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   MEDIA GALLERY PAGE
   ============================================ */

.media-gallery-page {
    background: #FFFFFF;
    min-height: 100vh;
}

.media-gallery-page .header-wrapper {
    position: static;
    padding-top: 0;
    background: #FFFFFF;
}

.media-gallery-page .main-header {
    background: #FFFFFF;
}

.media-gallery-main {
    padding-top: 0;
}

.media-gallery-hero {
    padding: 60px 0 40px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.16), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.media-gallery-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.media-gallery-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2FED9A;
    border-radius: 12px;
    flex-shrink: 0;
}

.media-gallery-icon i {
    font-size: 40px;
    color: #FFFFFF;
}

.media-gallery-title-content {
    flex: 1;
}

.media-gallery-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.2;
}

.media-gallery-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.media-clippings-section {
    padding: 40px 0 60px;
    background: #F9FAFB;
}

.clippings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.clipping-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.clipping-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.clipping-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #E2E8F0;
}

.clipping-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clipping-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.category-national {
    background: #1E40AF;
}

.category-local {
    background: #2FED9A;
}

.category-business {
    background: #0EA5E9;
}

.category-government {
    background: #9333EA;
}

.clipping-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.clipping-source {
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.clipping-headline {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.clipping-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #94A3B8;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
}

.clipping-date,
.clipping-page {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clipping-date i,
.clipping-page i {
    font-size: 10px;
}

.clipping-examine-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 4px;
}

.clipping-examine-link:hover {
    color: #2FED9A;
}

.clipping-examine-link i {
    font-size: 10px;
    transition: transform 0.2s;
}

.clipping-examine-link:hover i {
    transform: translateX(4px);
}

.media-impact-section {
    padding: 60px 0 80px;
    background: #F9FAFB;
}

.impact-panel {
    background: #0F172A;
    border-radius: 16px 0 0 16px;
    padding: 60px 80px;
    text-align: center;
}

.impact-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}

.impact-title .highlight-green {
    color: #2FED9A;
}

.impact-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles for Media Gallery Page */
@media (max-width: 1200px) {
    .clippings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .clippings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-panel {
        padding: 48px 60px;
    }
    
    .impact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .media-gallery-main-title {
        font-size: 36px;
    }
    
    .media-gallery-subtitle {
        font-size: 16px;
    }
    
    .media-gallery-icon {
        width: 60px;
        height: 60px;
    }
    
    .media-gallery-icon i {
        font-size: 30px;
    }
    
    .clippings-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-panel {
        padding: 40px 32px;
        border-radius: 16px;
    }
    
    .impact-title {
        font-size: 28px;
    }
    
    .impact-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .media-gallery-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .media-gallery-main-title {
        font-size: 28px;
    }
    
    .clipping-image-wrapper {
        height: 180px;
    }
    
    .clipping-content {
        padding: 16px;
    }
    
    .clipping-headline {
        font-size: 16px;
    }
}

/* ============================================
   VIDEO GALLERY PAGE
   ============================================ */

.video-gallery-page {
    background: #F1F5F9;
    min-height: 100vh;
}

.video-gallery-main {
    padding-top: 0;
    padding-bottom: 40px;
}

.video-gallery-hero {
    padding: 34px 0 22px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.18), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.16), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.video-back-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0F172A;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 26px;
}

.video-back-pill i {
    font-size: 14px;
    color: #0F172A;
}

.video-gallery-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-gallery-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.video-gallery-icon i {
    color: #2FED9A;
    font-size: 18px;
}

.video-gallery-main-title {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0F172A;
    text-transform: uppercase;
    line-height: 1.05;
}

.video-gallery-subtitle {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2FED9A;
}

.video-gallery-grid-section {
    padding: 22px 0 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.video-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.video-thumb {
    position: relative;
    height: 140px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #E2E8F0;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 32px;
    border-radius: 10px;
    background: #DC2626;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.35);
}

.video-play i {
    font-size: 18px;
}

.video-duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.video-info {
    padding: 14px 16px 16px;
}

.video-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #2FED9A;
    margin-bottom: 8px;
}

.video-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .video-gallery-main-title { font-size: 36px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .video-gallery-main-title { font-size: 30px; }
    .video-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NRI CENTER PAGE
   ============================================ */

.nri-center-page {
    background: #F1F5F9;
    min-height: 100vh;
}

.nri-center-main {
    padding-top: 0;
    padding-bottom: 50px;
}

.nri-hero {
    padding: 22px 0 26px;
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(47, 237, 154, 0.18), rgba(47, 237, 154, 0) 70%),
        radial-gradient(1000px 520px at 90% 10%, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0) 72%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.nri-back-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0F172A;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 18px;
}

.nri-hero-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.nri-hero-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.nri-hero-badge i {
    color: #2FED9A;
}

.nri-title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0F172A;
    text-transform: uppercase;
    line-height: 1.1;
}

.nri-subtitle {
    margin: 4px 0 0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2FED9A;
}

.nri-pill-tabs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
    margin: 10px 0 18px;
}

.nri-pill-tab {
    border: none;
    cursor: pointer;
    border-radius: 9999px;
    padding: 10px 18px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nri-pill-tab.active {
    background: #2FED9A;
    color: #0F172A;
    box-shadow: 0 18px 40px rgba(47, 237, 154, 0.35);
}

.nri-pill-tab {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nri-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 22px;
    padding: 26px 26px 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.nri-feature-kicker {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 10px;
}

.nri-feature-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: #0F172A;
    line-height: 1.1;
    text-transform: uppercase;
}

.nri-accent {
    color: #2FED9A;
    font-style: italic;
}

.nri-feature-desc {
    margin: 0;
    max-width: 760px;
    font-size: 12px;
    color: #64748B;
    line-height: 1.55;
}

.nri-feature-watermark {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    font-size: 120px;
    color: #0F172A;
    pointer-events: none;
}

.nri-vault {
    padding: 18px 0 10px;
}

.nri-vault-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 6px 0 14px;
}

.nri-vault-title {
    margin: 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0F172A;
}

.nri-vault-subtitle {
    margin: 6px 0 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2FED9A;
}

.nri-vault-action {
    border: 1px solid rgba(226, 232, 240, 1);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    padding: 10px 14px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    color: #0F172A;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nri-vault-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.nri-highlight-card {
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.nri-highlight-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nri-highlight-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: #2FED9A;
    box-shadow: 0 0 0 6px rgba(47, 237, 154, 0.18);
    flex-shrink: 0;
}

.nri-highlight-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.nri-highlight-expand {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
}

.nri-highlight-text {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.5;
}

.nri-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.nri-faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nri-faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.nri-faq-q {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    text-align: left;
    color: #0F172A;
}

.nri-faq-q span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0F172A;
}

.nri-faq-q i {
    color: #94A3B8;
    transition: transform 0.2s ease;
}

.nri-faq-a {
    display: none;
    padding: 0 16px 14px;
    color: #64748B;
    font-size: 12px;
    line-height: 1.55;
}

.nri-faq-item.open .nri-faq-a {
    display: block;
}

.nri-faq-item.open .nri-faq-q i {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .nri-faq-grid { grid-template-columns: 1fr; }
    .nri-feature-watermark { display: none; }
}

/* NRI Query Portal (Specialist Query Console) */
.nri-query-page .nri-hero {
    padding-bottom: 42px;
}

.nri-query-card {
    margin: 22px auto 0;
    max-width: 980px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.10);
    padding: 26px 28px 22px;
    position: relative;
    overflow: hidden;
}

.nri-query-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 9999px;
    background: rgba(47, 237, 154, 0.12);
    border: 1px solid rgba(47, 237, 154, 0.35);
    color: #2FED9A;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.nri-query-title {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    color: #0F172A;
    line-height: 1.05;
}

.nri-query-subtitle {
    margin: 8px 0 18px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94A3B8;
}

.nri-query-form {
    margin-top: 4px;
}

.nri-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
}

.nri-field label {
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 8px;
}

.nri-field input,
.nri-field textarea {
    width: 100%;
    border-radius: 9999px;
    border: 1px solid rgba(226, 232, 240, 1);
    background: rgba(248, 250, 252, 0.9);
    padding: 12px 16px;
    font-size: 12px;
    color: #0F172A;
    outline: none;
}

.nri-field textarea {
    border-radius: 18px;
    padding: 14px 16px;
    resize: vertical;
    min-height: 140px;
}

.nri-field input::placeholder,
.nri-field textarea::placeholder {
    color: #94A3B8;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 10px;
}

.nri-field-full {
    margin-top: 14px;
}

.nri-query-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

.nri-query-secure {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(226, 232, 240, 1);
}

.nri-secure-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 237, 154, 0.14);
    color: #2FED9A;
    flex-shrink: 0;
}

.nri-secure-title {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0F172A;
}

.nri-secure-sub {
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.4px;
}

.nri-query-submit {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    min-width: 360px;
    border-radius: 9999px;
    background: #2FED9A;
    color: #0F172A;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 24px 60px rgba(47, 237, 154, 0.30);
}

.nri-query-submit i {
    font-size: 14px;
}

.nri-query-footer-icons {
    display: flex;
    gap: 28px;
    justify-content: center;
    color: rgba(148, 163, 184, 0.9);
    margin-top: 22px;
    padding-top: 14px;
    font-size: 16px;
}

@media (max-width: 900px) {
    .nri-form-grid { grid-template-columns: 1fr; }
    .nri-query-actions { flex-direction: column; align-items: stretch; }
    .nri-query-submit { min-width: 0; width: 100%; }
}

/* ============================================
   ARTICLES PAGE
   ============================================ */

.articles-page {
    background: #F1F5F9;
    min-height: 100vh;
}

.articles-main {
    padding-top: 0;
    padding-bottom: 40px;
}

.articles-hero {
    padding: 34px 0 18px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.16), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.14), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.articles-back-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0F172A;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 26px;
}

.articles-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.articles-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.articles-icon i {
    color: #EF4444;
    font-size: 18px;
}

.articles-main-title {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0F172A;
    text-transform: uppercase;
    line-height: 1.05;
}

.articles-subtitle {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2FED9A;
}

.articles-quote-card {
    border-radius: 22px;
    padding: 20px 22px;
    background:
        radial-gradient(420px 220px at 92% 10%, rgba(220, 38, 38, 0.22), rgba(220, 38, 38, 0) 70%),
        linear-gradient(90deg, #050A16 0%, #0B1020 60%, #050A16 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.20);
    margin-bottom: 18px;
}

.articles-quote-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(47, 237, 154, 0.95);
    margin-bottom: 12px;
}

.articles-quote-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
}

.articles-quote-accent {
    color: #2FED9A;
}

.articles-quote-author {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
}

.articles-grid-section {
    padding: 6px 0 10px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.article-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.06);
    min-height: 132px;
    display: flex;
    flex-direction: column;
}

.article-thumb {
    height: 74px;
    background: #E2E8F0;
}

.article-card--text .article-thumb {
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.22), rgba(148, 163, 184, 0.10));
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-body {
    padding: 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #2FED9A;
}

.article-date i {
    font-size: 10px;
}

.article-title-only {
    font-size: 12px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.article-tag {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #0F172A;
}

@media (max-width: 1200px) {
    .articles-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .articles-main-title { font-size: 36px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .articles-main-title { font-size: 30px; }
    .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PUBLIC HEALTH MATRIX PAGE
   ============================================ */

.public-health-page {
    background: #F1F5F9;
    min-height: 100vh;
}

/* On public health pages, let header sit above content (no overlap) */
.public-health-page .header-wrapper {
    position: static;
    padding-top: 20px;
}

.public-health-main {
    padding-top: 0;
    padding-bottom: 50px;
}

.public-health-hero {
    padding: 34px 0 22px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(47, 237, 154, 0.18), rgba(47, 237, 154, 0) 70%),
        radial-gradient(900px 420px at 90% 10%, rgba(56, 189, 248, 0.16), rgba(56, 189, 248, 0) 70%),
        linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.public-health-back-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #0F172A;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    margin-bottom: 26px;
}

.public-health-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.public-health-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.public-health-icon i {
    color: #2FED9A;
    font-size: 18px;
}

.public-health-main-title {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #0F172A;
    text-transform: uppercase;
    line-height: 1.05;
}

.public-health-subtitle {
    margin: 6px 0 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2FED9A;
}

.public-health-banner-card {
    margin-top: 12px;
    border-radius: 64px;
    border: 8px solid #FFFFFF;
    background:
        linear-gradient(
            180deg,
            rgba(2, 6, 23, 0.9) 0%,
            rgba(2, 6, 23, 0.4) 50%,
            rgba(2, 6, 23, 0) 100%
        ),
        #020617;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    max-width: 1216px;
    min-height: 384px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    margin-left: auto;
    margin-right: auto;
}

/* COVID – 19: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, uppercase, white, center */
.public-health-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Green line: 96×4px, rounded caps, #2FED9A (Spring Green) */
.public-health-banner-line {
    width: 96px;
    height: 4px;
    border-radius: 9999px;
    background: #2FED9A;
    margin-top: 12px;
    flex-shrink: 0;
}

/* "Precaution is the Biggest Cure": Inter Medium Italic 24px, line-height 32px, #F1F5F9, center */
.public-health-banner-tagline {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    color: #F1F5F9;
}

.public-health-intel-section {
    padding: 40px 0 24px;
}

.public-health-intel-card {
    border-radius: 64px;
    padding: 80px 64px 64px;
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow:
        0 8px 10px -6px rgba(0, 0, 0, 0.10),
        0 20px 25px -5px rgba(0, 0, 0, 0.10);
    max-width: 1232px;
    margin: 0 auto;
}

.public-health-intel-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
    color: #2FED9A;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
    flex-shrink: 0;
}

.public-health-intel-icon i {
    font-size: 24px;
}

.public-health-intel-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0F172A;
}

.public-health-intel-text {
    margin: 0;
    font-size: 13px;
    color: #64748B;
}

.public-health-body {
    padding: 26px 0 20px;
}

.public-health-layout {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.public-health-nav-card {
    background: #FFFFFF;
    border-radius: 72px;
    padding: 40px 32px 40px;
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.10);
    border: 1px solid #F1F5F9;
}

.public-health-nav-header {
    margin-bottom: 18px;
}

.public-health-nav-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 15px;
    color: #94A3B8;
    margin-bottom: 4px;
}

.public-health-nav-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #020617;
}

.public-health-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.public-health-nav-item button {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20.6px 20px 20.6px 20.6px;
    border-radius: 32px;
    border: none;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 11.3px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.13px;
    line-height: 14px;
    color: #1A1A1A;
    justify-content: flex-start;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.08);
    border: 1px solid #F1F5F9;
}

.public-health-nav-item.active button {
    background: #2FED9A;
    color: #020617;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: transparent;
}

.public-health-nav-item.active .nav-dot {
    background: #FFFFFF;
}

.public-health-nav-item i {
    margin-left: auto;
    font-size: 11px;
    color: inherit;
}

.nav-dot {
    display: none;
}

.public-health-nav-icon {
    width: 49px;
    height: 49px;
    border-radius: 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    flex-shrink: 0;
}

.public-health-nav-icon img {
    width: 20px;
    height: 20px;
    display: block;
    opacity: 1;
}

.public-health-nav-item.active .public-health-nav-icon {
    background: #0F172A;
    box-shadow:
        0 4px 6px -4px rgba(0, 0, 0, 0.10),
        0 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.public-health-nav-item.active .public-health-nav-icon img {
    filter: invert(83%) sepia(35%) saturate(749%) hue-rotate(93deg) brightness(103%) contrast(104%);
}

.nav-text {
    flex: 1;
    text-align: left;
}

/* Main content card – Family Safety style: 72px radius, 79.89px padding, 1px #F1F5F9, shadow 0 50px 120px -30px 10% black */
.public-health-content-card {
    width: 100%;
    max-width: 810.67px;
    background: #FFFFFF;
    border-radius: 72px;
    padding: 79.89px;
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.10);
    border: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.public-health-content-header {
    margin-bottom: 10px;
}

.content-kicker {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.content-title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #020617;
}

/* How it spreads page – title format: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-how-it-spreads .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-how-it-spreads .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-how-it-spreads .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Family Safety page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-family-safety .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-family-safety .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-family-safety .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Preventive Measures page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-preventive-measures .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-preventive-measures .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-preventive-measures .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Hand Washing page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-hand-wash .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-hand-wash .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-hand-wash .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Masks & Indoor page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-masks-indoor .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-masks-indoor .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-masks-indoor .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Positive Protocol page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-positive-protocol .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-positive-protocol .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-positive-protocol .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* Hunt Property Shield page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-hunt-shield .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-hunt-shield .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-hunt-shield .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* What is COVID page – title: Poppins Bold 72px, line-height 72px, letter-spacing -3.6px, #020617 */
.page-what-is-covid .content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    text-transform: uppercase;
    color: #020617;
    max-width: 648.89px;
}

@media (max-width: 768px) {
    .page-what-is-covid .content-title {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
}

@media (max-width: 520px) {
    .page-what-is-covid .content-title {
        font-size: 32px;
        letter-spacing: -1.5px;
    }
}

/* What is COVID – intro paragraph: blue left border, Inter Medium Italic 18px, #334155 */
.page-what-is-covid .what-is-covid-intro {
    border-left: 4px solid #3B82F6;
    padding-left: 16px;
    max-width: 648.89px;
}

.page-what-is-covid .what-is-covid-intro .content-lede {
    margin: 0 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 29.25px;
    letter-spacing: 0;
    color: #334155;
}

.content-lede {
    margin: 0 0 18px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
}

.content-lede-question {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    margin-bottom: 14px;
}

/* Hunt Shield page – "HUNT PROPERTY MEASUREMENTS" subtitle: Poppins Bold 30px, line-height 36px, #0F172A */
.page-hunt-shield .hunt-shield-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0F172A;
    margin-bottom: 14px;
}

/* Family Safety subtitle: two lines, Poppins Bold 30px / 36px, black text */
.family-safety-question {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    padding: 0;
    margin-bottom: 14px;
    display: inline-block;
    max-width: 648.89px;
    box-sizing: border-box;
}

.symptoms-card {
    /* Design measurements: Component 4 - SYMPTOMS ANALYSIS */
    width: 100%;
    max-width: 648.89px;
    background: #F8FAFC;
    border-radius: 40px;
    padding: 31.89px;
    border: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.symptoms-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.symptoms-header-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.symptoms-kicker {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #9CA3AF;
}

.symptoms-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0F172A;
}

.symptoms-common-label {
    margin: 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2FED9A;
    text-align: left;
}

.symptoms-common-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 0 0 12px;
}

/* Most Common Symptoms – three cards (design: Component 4) */
.symptoms-common-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

/* Rest card style – Component 4: width 136.78px, hug 42.78px, radius 12px, padding 11.89px, border 1px #F1F5F9, white 50% */
.symptom-common-card {
    width: 136.78px;
    min-height: 42.78px;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11.89px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.symptom-common-card i {
    font-size: 18px;
    color: #94A3B8;
}


.symptoms-section {
    margin-bottom: 0;
}

.symptoms-subtitle {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6B7280;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.symptom-tag {
    width: 136.78px;
    min-height: 42.78px;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
    background: rgba(255, 255, 255, 0.5);
    padding: 11.89px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    box-sizing: border-box;
}

.symptoms-severe {
    margin-top: 0;
    padding: 12px 14px;
    border-radius: 18px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
}

.symptoms-severe-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #B91C1C;
    margin-bottom: 6px;
}

.symptoms-severe-list {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    color: #B91C1C;
    line-height: 1.5;
}

.spread-quote-card {
    margin-bottom: 24px;
    border-radius: 64px;
    padding: 40px 48px;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Quote card text: Inter Medium Italic 20px, line-height 32.5px, center, #FFFFFF */
.spread-quote-card p {
    margin: 0 auto;
    max-width: 519px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: center;
}

.spread-protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* DROPLET PROTOCOL & CONTACT VECTOR cards: radius 48px, border 1px #F1F5F9, two drop shadows */
.spread-protocol-card {
    background: #FFFFFF;
    border-radius: 48px;
    padding: 24px 28px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    min-height: 292.78px;
    max-width: 308.49px;
    box-sizing: border-box;
}

.spread-protocol-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #86EFAC;
    color: #2FED9A;
    flex-shrink: 0;
}

.spread-protocol-icon i {
    font-size: 20px;
}

/* Card heading: Poppins Bold 24px, line-height 32px, uppercase, #0F172A (Ebony) */
.spread-protocol-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0F172A;
}

/* Card body text: Inter Medium 14px, line-height 22.75px, #64748B (Slate Gray) */
.spread-protocol-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.75px;
    letter-spacing: 0;
    color: #64748B;
}

/* Family Safety quote card: #F8FAFC, 1px #F1F5F9, green left accent, inner shadow */
.family-quote-card {
    margin-bottom: 0;
    width: 100%;
    max-width: 648.89px;
    border-radius: 16px;
    padding: 39.89px;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-left: 4px solid #2FED9A;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.family-quote-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #1E293B;
    line-height: 1.6;
    text-align: left;
}

.family-safety-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(200.3px, 1fr));
    gap: 14px;
}

/* Small cards: 200.3px × 113.78px min, 40px radius, 31.89px padding, 1px #E2E8F0, two drop shadows */
.family-safety-card {
    width: 100%;
    max-width: 200.3px;
    min-height: 113.78px;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 31.89px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    box-sizing: border-box;
}

.family-safety-card-body {
    flex: 1;
    min-width: 0;
}

/* Inner card for tick icon: 32.97×48px, 16px radius, #F1F5F9, inner shadow */
.family-safety-pill-icon {
    width: 32.97px;
    height: 48px;
    border-radius: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    color: #2FED9A;
}

.family-safety-pill-icon i {
    font-size: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #2FED9A;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card title: Inter Black 12px, line-height 16px, letter-spacing -0.3px, #0F172A (Ebony) */
.family-safety-title {
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    color: #0F172A;
}

.family-safety-text {
    margin: 0;
    font-size: 11px;
    color: #64748B;
    line-height: 1.5;
}

.preventive-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

/* Preventive cards: 312.44px width, hug height, 40px radius, 31.89px padding, 1px #F1F5F9, two drop shadows */
.preventive-card {
    width: 100%;
    max-width: 312.44px;
    min-height: 142.14px;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 31.89px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    box-sizing: border-box;
}

/* Outer card for asset only: 56×56px, 16px radius, #F8FAFC, inner shadow */
.preventive-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F8FAFC;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    flex-shrink: 0;
    overflow: hidden;
}

.preventive-card-icon i {
    font-size: 20px;
}

.preventive-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.preventive-card h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    color: #020617;
    line-height: 1.5;
}

/* Advanced measures card: #020617, 64px radius, padding 79.56px 48px 48px 48px, fill 648.89px */
.advanced-measures-card {
    margin-top: 22px;
    width: 100%;
    max-width: 648.89px;
    min-height: 279.3px;
    border-radius: 64px;
    padding: 79.56px 48px 48px 48px;
    background: #020617;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

/* ADVANCED MEASURES label: Poppins Bold 24px, line-height 32px, letter-spacing 2.4px, #2FED9A (Spring Green) */
.advanced-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2FED9A;
    margin: 0;
}

.advanced-label i {
    font-size: 24px;
    color: #2FED9A;
}

/* Advanced measures description: Inter Medium Italic 18px, line-height 29.25px, white */
.advanced-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0;
    color: #FFFFFF;
    max-width: 519.31px;
}

.handwash-main-grid {
    display: block;
    margin-bottom: 18px;
}

.handwash-icon-card {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.handwash-card-text {
    flex: 1;
    min-width: 0;
}

/* Hand icon card: 192×192px, 48px radius, #EFF6FF, 1px #DBEAFE, inner shadow; image 80×80px */
.handwash-icon-circle {
    width: 192px;
    height: 192px;
    border-radius: 48px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    box-shadow: inset 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.handwash-icon-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.handwash-icon-circle i {
    font-size: 34px;
    color: #06B6D4;
}

/* Card headline: Poppins Bold 36px, line-height 36px, uppercase; "20 SECONDS" in green */
.handwash-headline {
    margin: 0 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #020617;
}

.handwash-label {
    display: inline;
}

.handwash-seconds {
    display: inline;
    color: #2FED9A;
}

/* Text card: left border 1.78px #3B82F6, padding; width ~408px */
.handwash-copy-card {
    border-left: 1.78px solid #3B82F6;
    padding-left: 16px;
    margin-top: 12px;
    max-width: 408.89px;
}

/* Card text: Inter Medium Italic 18px, line-height 29.25px, #475569 */
.handwash-copy {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0;
    color: #475569;
    text-align: left;
}

.handwash-steps-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

/* Step cards: 40px radius, 31.89px padding, 1px #F1F5F9, two drop shadows – same style for all four */
.handwash-step-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 31.89px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    min-height: 194.97px;
    box-sizing: border-box;
}

.handwash-step-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #020617;
}

.handwash-step-card p {
    margin: 0;
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

/* WHEN TO WASH? – last card: 48px radius, 31.89px padding, #F8FAFC, top border 1px #F1F5F9, max-width 648.89px */
.handwash-when-block {
    margin-top: 24px;
    width: 100%;
    max-width: 648.89px;
    padding: 31.89px;
    border-radius: 48px;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    border-top: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

/* WHEN TO WASH? heading: Inter Black 10px, line-height 15px, letter-spacing 4px, #94A3B8 */
.handwash-when-label {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #94A3B8;
}

.handwash-when-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

/* Inner cards: 183.69px width, 73.78px min-height, 16px radius, 15.89px padding, horizontal, 1px #E2E8F0, shadow 0 1px 2px 5% black */
.handwash-when-card {
    width: 100%;
    max-width: 183.69px;
    min-height: 73.78px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 15.89px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #020617;
    text-align: left;
    box-sizing: border-box;
}

.handwash-when-card i {
    font-size: 20px;
    color: #64748B;
    flex-shrink: 0;
}

.handwash-when-btn {
    border-radius: 9999px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    color: #4B5563;
    cursor: default;
}

.handwash-when-btn.active {
    background: #10B981;
    border-color: #10B981;
    color: #022C22;
}

/* Masks & Indoor – kicker underline */
.page-masks-indoor .content-kicker {
    color: #64748B;
    border-bottom: 1px solid #86EFAC;
    padding-bottom: 6px;
    display: inline-block;
}

.masks-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    margin-bottom: 18px;
}

.masks-card-light {
    background: #FFFFFF;
    border-radius: 64px;
    padding: 79.88px 47.89px 47.9px 47.89px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 308.44px;
}

.masks-card-light-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: -32px -8px 0 0;
}

.masks-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.masks-card-icon--green {
    background: #F1F5F9;
    color: #2FED9A;
    font-size: 20px;
}

.masks-card-icon--top-right {
    opacity: 0.7;
}

.masks-card-icon--blue {
    background: #F1F5F9;
    color: #38BDF8;
    font-size: 20px;
}

.masks-card-light h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.75px;
    text-transform: uppercase;
    color: #0F172A;
}

.masks-card-light-text {
    border-left: 4px solid #2FED9A;
    padding-left: 16px;
}

.masks-card-light-text p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 29.25px;
    letter-spacing: 0;
    color: #475569;
    text-align: left;
}

.masks-card-dark {
    background: #0F172A;
    border-radius: 64px;
    padding: 80px 48px 138.28px 48px;
    color: #FFFFFF;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 308.44px;
}

.masks-card-dark h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.75px;
    text-transform: uppercase;
    color: #2FED9A;
}

.masks-card-dark p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 29.25px;
    letter-spacing: 0;
    color: #CBD5E1;
}

.masks-family-card {
    border-radius: 64px;
    padding: 47.89px;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-left: 4px solid #F9A8D4;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    max-width: 648.89px;
}

.masks-family-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.masks-family-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #020617;
    line-height: 1.3;
}

.masks-family-card p {
    margin: 0;
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.positive-main-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.positive-travel-card {
    border-radius: 64px;
    padding: 48px;
    background: #2FED9A;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 648.89px;
}

.positive-travel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.75px;
    text-transform: uppercase;
    color: #1A1A1A;
}

.positive-travel-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.positive-travel-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 32.5px;
    letter-spacing: 0;
    color: #5B5B5B;
}

.positive-what-card {
    border-radius: 64px;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 648.89px;
}

.positive-what-header {
    background: #DC2626;
    color: #FEE2E2;
    padding: 24px 48px;
    text-align: left;
}

.positive-what-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.75px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.positive-what-icon-shade {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.positive-what-icon-shade img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.positive-what-kicker i {
    font-size: 24px;
    color: #FFFFFF;
}

.positive-what-body {
    padding: 32px 48px 48px;
    background: #FFFFFF;
    text-align: left;
}

.positive-what-intro {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #7F1D1D;
}

.positive-what-list {
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 13px;
    color: #7F1D1D;
    line-height: 1.7;
}

.positive-warning-chip {
    padding: 10px 12px;
    border-radius: 14px;
    background: #FEF2F2;
    border: 1px dashed #FCA5A5;
    font-size: 12px;
    color: #B91C1C;
}

.hunt-measures-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hunt-measure-pill {
    border-radius: 48px;
    padding: 31.89px;
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 312.44px;
    min-height: 113.78px;
}

.hunt-measure-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #EFF6FF;
    border: 1px solid #E2E8F0;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hunt-measure-icon-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hunt-measure-icon-inner img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hunt-measure-icon i {
    font-size: 14px;
    color: #2FED9A;
}

.hunt-measure-text {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1.3;
    color: #0F172A;
    flex: 1;
    min-width: 0;
}

.hunt-measure-pill h3 {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #020617;
}

.hunt-measure-pill p:not(.hunt-measure-text) {
    margin: 0;
    font-size: 11px;
    color: #6B7280;
}

.hunt-together-card {
    margin-top: 24px;
    border-radius: 80px;
    padding: 103.33px 64px 64px 64px;
    background: #020617;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 648.89px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #FFFFFF;
    text-align: center;
}

.hunt-together-card h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -1.8px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}

.hunt-together-card h3 span {
    color: #2FED9A;
}

.hunt-together-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    line-height: 39px;
    letter-spacing: 0;
    color: #CBD5E1;
    text-align: center;
}

.public-health-bottom-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.public-health-bottom-icons i {
    font-size: 32px;
    color: rgba(148, 163, 184, 0.45);
}

@media (max-width: 1100px) {
    .public-health-layout {
        grid-template-columns: 260px minmax(0, 1fr);
    }
    .symptoms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .handwash-main-grid { grid-template-columns: 1fr; }
    .handwash-icon-card { flex-direction: column; align-items: flex-start; }
    .masks-main-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .public-health-main-title { font-size: 38px; }
    .public-health-layout {
        grid-template-columns: 1fr;
    }
    .public-health-nav-card {
        order: 1;
        display: flex;
        flex-direction: column;
    }
    .public-health-content-card {
        order: 0;
    }
    .symptoms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .spread-protocol-grid { grid-template-columns: 1fr; }
    .family-safety-grid { grid-template-columns: 1fr; }
    .preventive-grid { grid-template-columns: 1fr; }
    .handwash-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .handwash-when-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .masks-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .public-health-banner-title { font-size: 42px; line-height: 1.1; letter-spacing: -2px; }
    .public-health-banner-tagline { font-size: 18px; line-height: 1.4; }
}

@media (max-width: 520px) {
    .public-health-main-title { font-size: 30px; }
    .public-health-banner-title { font-size: 32px; letter-spacing: -1.5px; }
    .public-health-banner-tagline { font-size: 16px; line-height: 1.4; }
    .public-health-banner-card {
        padding: 24px 20px;
        border-radius: 22px;
    }
    .public-health-intel-card {
        padding: 18px 18px;
        flex-direction: column;
        align-items: flex-start;
    }
    .public-health-nav-card {
        padding: 16px 12px;
        border-radius: 24px;
    }
    .public-health-content-card {
        padding: 20px 18px 22px;
        border-radius: 24px;
    }
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
}

/* Login page: icon + +91 inside one rounded field (static prefix) */
.login-phone-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #F8FAFC;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-phone-field:focus-within {
    border-color: #2FED9A;
    box-shadow: 0 0 0 1px #2FED9A;
}

.login-phone-affix {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 14px 18px;
    flex-shrink: 0;
    color: #64748B;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid #E2E8F0;
    user-select: none;
}

.login-phone-affix i {
    font-size: 16px;
    color: #94A3B8;
}

.login-phone-prefix {
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.login-phone-field .login-phone-input {
    flex: 1;
    min-width: 0;
    border: none !important;
    border-radius: 0;
    padding: 14px 18px 14px 14px;
    background: transparent;
    box-shadow: none !important;
}

.login-phone-field .login-phone-input:focus {
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

/* ============================================
   GLOBAL RESPONSIVE – MOBILE MENU & LAYOUT
   Same behavior on every screen size
   ============================================ */

/* Responsive breakpoints (use consistently) */
/* 480px: small phones | 768px: phones/large phones | 1024px: tablets | 1280px+: desktop */

/* Prevent horizontal scroll everywhere */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Mobile menu button – visible only on tablet and below */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    z-index: 10002;
    transition: background 0.2s;
}
.mobile-menu-btn:hover {
    background: #E2E8F0;
}
.mobile-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
body.mobile-nav-open .mobile-menu-btn .mobile-menu-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.mobile-nav-open .mobile-menu-btn .mobile-menu-icon:nth-child(2) {
    opacity: 0;
}
body.mobile-nav-open .mobile-menu-btn .mobile-menu-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Drawer overlay — only used below 1024px */
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 10060;
    }

    /* Dim page when drawer is open */
    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 10040;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-nav-bar {
        flex-wrap: nowrap;
        padding: 12px 16px;
        gap: 12px;
        position: relative;
        z-index: 10055;
    }
    .logo-section {
        flex: 1;
        margin-bottom: 0;
        min-width: 0;
    }

    /* Right slide-in drawer: single column, not inside the pill */
    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        width: min(92vw, 380px);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: calc(16px + env(safe-area-inset-top, 0px)) 0 calc(24px + env(safe-area-inset-bottom, 0px));
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: #ffffff;
        box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
        z-index: 10050;
        border: none;
        border-radius: 0;
        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    }
    body.mobile-nav-open .main-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav .nav-link,
    .main-nav .dropdown-link {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }
    .main-nav .nav-dropdown-wrapper {
        position: static;
        width: 100%;
    }
    .main-nav .nav-dropdown {
        display: none;
        position: static;
        width: 100% !important;
        height: auto !important;
        max-height: min(50vh, 320px);
        box-shadow: none;
        border-radius: 0;
        border: none;
        border-top: 1px solid #E5E7EB;
        background: #F8FAFC;
        margin: 0;
        padding: 8px 0;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }
    .main-nav .nav-dropdown-wrapper.open .nav-dropdown {
        display: block;
    }
    .main-nav .nav-dropdown-content {
        flex-direction: column;
        flex-wrap: nowrap;
        height: auto;
        width: 100%;
        gap: 0;
    }
    .main-nav .nav-dropdown-column {
        width: 100% !important;
        flex: none !important;
        padding: 12px 16px;
        border: none !important;
    }
    .main-nav .nav-dropdown-column:first-child {
        border-right: none !important;
    }
    .main-nav .nav-dropdown-header {
        text-align: left;
        margin-bottom: 10px;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 20px 8px;
        margin-top: auto;
        border-top: 1px solid #E5E7EB;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-nav-post-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        background-color: #0F172A;
        color: white;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
        transition: background 0.2s;
    }
    .mobile-nav-post-btn:hover {
        background-color: #1E293B;
        color: white;
    }
    .mobile-nav-user {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .mobile-nav-user-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
        color: var(--text-dark);
        background: #F1F5F9;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: left;
        font-family: inherit;
        text-decoration: none;
        min-height: 48px;
        box-sizing: border-box;
        transition: background 0.2s;
    }
    .mobile-nav-user-item:hover {
        background: #E2E8F0;
    }
    .mobile-nav-user-item i {
        width: 22px;
        flex-shrink: 0;
        text-align: center;
        color: #22C55E;
    }
}

@media (min-width: 1024px) {
    .mobile-nav-actions {
        display: none;
    }
}

/* Hero & search – fluid and responsive */
@media (max-width: 1023px) {
    .hero-section {
        padding-top: 160px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 60px;
        min-height: auto;
    }
    .hero-content {
        padding: 0 16px;
    }
    .hero-title {
        font-size: clamp(28px, 6vw, 42px);
        margin-bottom: 24px;
    }
    .hero-search-panel.search-container {
        padding: 24px 18px 22px;
        max-width: 100%;
        border-radius: 28px;
        border-width: 2px;
    }
    .hero-search-panel .search-row-first .search-input-group {
        min-width: 0;
    }
    .hero-search-panel .filter-btn,
    .hero-search-panel .search-btn {
        min-height: 56px;
    }
    .hero-search-panel .search-btn {
        font-size: 17px;
        min-width: 140px;
    }
    .hero-search-panel .search-row-second .top-toolbar-property-type {
        flex: 1 1 100%;
        min-width: 0;
    }
    .hero-search-panel .search-dropdown {
        min-width: 0;
        flex: 1 1 calc(50% - 6px);
    }
    .hero-search-panel .post-requirement-btn {
        margin-left: 0;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 180px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-title {
        font-size: clamp(24px, 5.5vw, 32px);
    }
    .buy-rent-toggle {
        padding: 3px;
        margin-bottom: 20px;
    }
    .toggle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-search-panel.search-container {
        padding: 24px 14px 18px;
    }
    .hero-search-panel .search-bar {
        gap: 12px;
    }
    .hero-search-panel .search-row-first {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-search-panel .search-row-first .search-input-group {
        flex: 1 1 100%;
        min-width: 0;
    }
    .hero-search-panel .search-row-first .search-input-group + .filter-btn {
        flex: 0 0 auto;
        width: 56px;
        min-width: 56px;
        height: 56px;
    }
    .hero-search-panel .search-row-first .search-btn {
        flex: 1 1 auto;
        min-width: 0;
        height: 56px;
        font-size: 16px;
    }
    .hero-search-panel .search-row-second {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-search-panel .search-row-second .top-toolbar-property-type {
        flex: 1 1 100%;
        min-width: 0;
    }
    .hero-search-panel .search-row-second .search-dropdown {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
    }
    .hero-search-panel .search-row-second .post-requirement-btn {
        flex: 1 1 100%;
        margin-left: 0;
        width: 100%;
        min-width: 0;
        height: 44px;
        font-size: 10px;
    }
    .hero-search-panel .top-toolbar-property-trigger {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 14px;
    }
    .hero-search-panel .search-input {
        min-height: 56px;
        padding: 12px 14px 12px 48px;
        font-size: 15px;
    }
    .hero-search-panel .search-dropdown {
        min-height: 44px;
        padding: 10px 32px 10px 12px;
        font-size: 14px;
    }
    .hero-search-panel .filter-btn {
        min-height: 56px;
    }

    /* Mobile: collapsed search — only location + Search until user taps the field */
    .search-bar:not(.search-bar--mobile-expanded) .filter-btn,
    .search-bar:not(.search-bar--mobile-expanded) .search-row-second {
        display: none !important;
    }
    .search-bar:not(.search-bar--mobile-expanded) .search-row-first {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 10px;
    }
    .search-bar:not(.search-bar--mobile-expanded) .search-row-first .search-input-group {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    .search-bar:not(.search-bar--mobile-expanded) .search-row-first .search-btn {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        height: 52px;
    }
}

@media (max-width: 479px) {
    .hero-section {
        padding-top: 160px;
    }
    .hero-title {
        font-size: 22px;
    }
    .main-header .container,
    .hero-content {
        padding: 0 12px;
    }
    .hero-search-panel.search-container {
        padding: 20px 12px 16px;
        border-radius: 22px;
    }
    .hero-search-panel .search-bar {
        gap: 10px;
    }
    .hero-search-panel .search-row-first,
    .hero-search-panel .search-row-second {
        gap: 8px;
    }
    .hero-search-panel .search-row-second .search-dropdown {
        flex: 1 1 100%;
    }
    .hero-search-panel .search-input,
    .hero-search-panel .search-dropdown,
    .hero-search-panel .top-toolbar-property-trigger {
        font-size: 14px;
    }
    .hero-search-panel .search-btn {
        font-size: 15px;
    }
    .hero-search-panel .post-requirement-btn {
        font-size: 10px;
        padding: 10px 12px;
        white-space: normal;
        line-height: 1.25;
        height: auto;
        min-height: 44px;
    }
}

/* Footer – fully responsive */

/* Tablet (≤1023px) */
@media (max-width: 1023px) {
    .main-footer {
        padding: 48px 0 20px;
    }
    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-left {
        max-width: 100%;
    }
    .footer-right {
        width: 100%;
        align-items: stretch;
    }
    .newsletter-section {
        max-width: 100%;
        min-height: unset;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-input {
        width: 100%;
    }
    .newsletter-submit-btn {
        width: 100%;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 16px;
    }
    .footer-content {
        gap: 28px;
        margin-bottom: 28px;
    }
    .footer-top-section {
        gap: 24px;
    }
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-description {
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
        text-align: center;
    }
    .social-media {
        justify-content: center;
    }
    .app-downloads {
        justify-content: center;
    }
    .footer-right {
        align-items: center;
    }
    .newsletter-section {
        padding: 28px 20px;
        text-align: center;
    }
    .newsletter-title {
        font-size: 18px;
    }
    .newsletter-description {
        font-size: 14px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        margin-top: 4px;
    }
    .newsletter-input {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
    .newsletter-submit-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-column {
        align-items: flex-start;
    }
    .footer-column-title {
        font-size: 14px;
    }
    .footer-link-list a {
        font-size: 13px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .copyright {
        font-size: 13px;
    }
}

/* Small mobile (≤479px) */
@media (max-width: 479px) {
    .main-footer {
        padding: 32px 0 14px;
    }
    .footer-top-section {
        gap: 20px;
    }
    .footer-logo img {
        height: 34px;
    }
    .footer-description {
        font-size: 14px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .app-download-link img {
        height: 34px;
    }
    .newsletter-section {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .newsletter-title {
        font-size: 16px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer-legal-links a {
        font-size: 12px;
    }
    .copyright {
        font-size: 12px;
    }
}

/* Property & project cards – responsive grids already exist; ensure images scale */
.property-card img,
.project-card img,
.results-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Touch targets and spacing on small screens */
@media (max-width: 767px) {
    .section-title {
        font-size: clamp(22px, 4.5vw, 28px);
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 479px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .back-to-home-btn span {
        display: none;
    }
    .post-property-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Ensure all main content areas respect viewport */
.header-wrapper,
.main-header .container,
.hero-content,
.main-footer .container {
    max-width: 100%;
}

/* Unify header-to-page spacing across all pages.
   Header wrapper is absolutely positioned, so each page's main needs the same offset
   to avoid the "separate page / gap" look. */
:root {
    --site-header-offset: 90px;
}

main[class$="-main"] {
    padding-top: var(--site-header-offset) !important;
    background: transparent !important;
}

/* The global `section { padding: 80px 0; }` adds extra top spacing.
   Since our header is absolutely positioned, the first section's top
   padding should be reduced to keep header + page visually connected. */
main[class$="-main"] > section:first-of-type {
    padding-top: 0 !important;
}