@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: #22C55E;
    --primary-purple: #9333EA;
    --dark-blue: #1E40AF;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --border-color: #E5E7EB;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

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

/* 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 */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
    overflow: hidden;
    height: auto;
}

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

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

.header-nav-bar {
    background-color: var(--bg-white);
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 40px);
    position: relative;
    overflow: visible;
}

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

.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);
}

.property-type-dropdown {
    position: fixed !important;
    width: 216px;
    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 {
    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 {
    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-dropdown {
    position: fixed;
    width: 168px;
    height: 148px;
    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;
    overflow: hidden;
}

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

.user-dropdown-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    flex: 1;
}

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

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

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

.logout-btn {
    border-top: 1px solid #E5E7EB;
    margin-top: 4px;
    padding-top: 12px;
    color: #EF4444;
}

.logout-btn:hover {
    background-color: #FEE2E2;
    color: #DC2626;
}

.logout-btn:hover i {
    color: #DC2626;
}

.footer-covid-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 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: #22C55E;
    color: #022C22;
    border-color: #22C55E;
}

/* 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: 40px;
    line-height: 1.2;
}

/* Buy/Rent Toggle Button */
.buy-rent-toggle {
    display: inline-flex;
    background-color: #F3F4F6;
    border-radius: 40px;
    padding: 4px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
    color: #6B7280;
}

.toggle-btn.active {
    background-color: #020617;
    color: #2FED9A;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-btn:not(.active):hover {
    color: #020617;
}

.search-container {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.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;
    background-color: var(--bg-white);
}

.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;
}

/* On results page, header should push content down (no overlap) */
.results-page .header-wrapper {
    position: static;
    padding-top: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* 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;
}

.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-x: hidden;
}

.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;
}

.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;
    }

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

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

.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;
}

.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));
}

.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;
    }
}

.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;
}

.property-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.property-icon-btn img {
    width: 20px;
    height: 20px;
    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;
}

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

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-align: right;
}

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

.amenity-pill {
    background: #F9FAFB;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    color: #4B5563;
    text-align: center;
}

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

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

.owner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22C55E, #0EA5E9);
}

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

.owner-badge {
    font-size: 12px;
    color: #16A34A;
}

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

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

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

.enquiry-toggle-btn {
    flex: 1;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
}

.enquiry-toggle-btn.active {
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.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;
}

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

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

    .property-price-card {
        width: 220px;
    }
}

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

    .property-summary-card {
        flex-direction: column;
    }

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

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

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

.channel-page {
    background: #F1F5F9;
}

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

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

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

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

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

.channel-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 48px;
    padding-bottom: 80px;
}

.back-to-listings-btn {
    align-self: flex-start;
    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: 32px;
    max-width: 640px;
}

.channel-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.channel-hero-subtitle {
    color: #E5E7EB;
    font-size: 15px;
    max-width: 520px;
}

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

.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: #22C55E;
    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;
}

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

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

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

    .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(34, 197, 94, 0.08);
    color: #16A34A;
}

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

.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, #22C55E);
    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(34, 197, 94, 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: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #022C22;
    font-size: 22px;
    box-shadow: 0 25px 50px -20px rgba(34, 197, 94, 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: #22C55E;
    color: #022C22;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 40px -20px rgba(34, 197, 94, 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: #22C55E;
    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: #22C55E;
    background: #ECFDF5;
    box-shadow: 0 10px 25px -12px rgba(34, 197, 94, 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-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;
}

.vaastu-chat-input::placeholder {
    color: #9CA3AF;
}

.vaastu-chat-send {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    border: none;
    background: #020617;
    color: #22C55E;
    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;
}

@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(34, 197, 94, 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, #22C55E, #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: #22C55E;
    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, #22C55E, #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: #22C55E;
    color: #022C22;
    box-shadow: 0 25px 60px -24px rgba(34, 197, 94, 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;
}

.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid,
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav-bar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo-section {
        width: 100%;
        margin-bottom: 10px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin: 15px 0 0 0;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .search-row-first,
    .search-row-second {
        flex-direction: column;
    }

    .search-input-group,
    .search-dropdown,
    .filter-btn,
    .search-btn,
    .post-requirement-btn {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .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 Page */
.loan-page {
    background: #F3F4F6;
    min-height: 100vh;
}

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

.loan-section {
    padding: 40px 0 0;
}

.loan-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

.loan-info-card,
.loan-apply-card {
    background-color: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #F1F5F9;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
}

.loan-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.loan-description {
    font-size: 14px;
    color: #6B7280;
    max-width: 420px;
}

.loan-description + .loan-description {
    margin-top: 6px;
}

.loan-description-muted {
    opacity: 0.9;
}

.loan-benefits-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.loan-benefit-card {
    background-color: #FDF3EE;
    border-radius: 20px;
    padding: 18px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.loan-benefit-card:nth-child(2),
.loan-benefit-card:nth-child(4) {
    background-color: #F9ECFF;
}

.loan-benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2FED9A;
    flex-shrink: 0;
    font-size: 14px;
}

.loan-benefit-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #111827;
}

.loan-benefit-text p {
    font-size: 12px;
    color: #6B7280;
}

.loan-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.loan-form .form-group {
    margin-bottom: 18px;
}

.loan-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;
}

.loan-apply-card .form-input {
    background-color: #F9FAFB;
}

.loan-submit-btn {
    margin-top: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    border: none;
    background-color: #22C55E;
    color: #020617;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 15px 30px -10px rgba(34, 197, 94, 0.6);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

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

.loan-submit-btn:hover {
    background-color: #16A34A;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px -15px rgba(22, 163, 74, 0.7);
}

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

@media (max-width: 768px) {
    .loan-layout {
        gap: 24px;
    }

    .loan-info-card,
    .loan-apply-card {
        padding: 28px 24px;
        border-radius: 32px;
    }

    .loan-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.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: hidden;
}

.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;
    }
    
    .register-card-left {
        min-height: 400px;
    }
    
    .register-card-right {
        padding: 30px 20px;
    }
}

/* 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%, #22C55E 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;
}

/* ============================================
   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;
}

.map-container {
    background: #F1F5F9;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}

.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);
}

.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 {
    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:hover {
    border-color: #2FED9A;
}

.furnishing-item input[type="checkbox"] {
    display: none;
}

.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;
}

.amenity-item input[type="checkbox"] {
    display: 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, 1fr);
    }
    
    .property-action-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .post-property-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .progress-indicator {
        width: 100%;
        justify-content: space-between;
    }
    
    .progress-step {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .post-property-form {
        padding: 24px;
    }
    
    .property-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   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;
}

.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: 24px;
}

.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;
}

.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;
}

@media (max-width: 768px) {
    .view-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .privacy-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .identity-verification {
        align-items: flex-start;
        width: 100%;
    }
    
    .upload-area {
        padding: 48px 24px;
    }
    
    .upload-icon {
        font-size: 48px;
    }
}

/* ============================================
   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;
    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;
}

.dashboard-avatar-wrap {
    position: relative;
}

.dashboard-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid #22C55E;
    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: #22C55E;
    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;
}

.dashboard-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.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;
}

.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 #22C55E;
    background: #22C55E;
}

.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: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #FFFFFF;
}

.dashboard-nav-icon-active {
    background: #22C55E;
    border-color: #22C55E;
    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: #22C55E;
    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-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%, #22C55E 40%, #16A34A 100%);
    box-shadow: 0 24px 55px -24px rgba(34, 197, 94, 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%, #22C55E 40%, #16A34A 100%);
    box-shadow: 0 24px 55px -24px rgba(34, 197, 94, 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: #22C55E;
    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: #22C55E;
}

.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: #22C55E;
    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-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: 999px;
    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: 999px;
    border: none;
    background: #22C55E;
    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-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: #22C55E;
    color: #022C22;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    box-shadow: 0 20px 50px -24px rgba(34, 197, 94, 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: #22C55E;
    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: #22C55E;
    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;
}

.dashboard-btn-primary {
    border: none;
    background: #22C55E;
    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(3, 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: flex-start;
    }

    .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: 24px;
    }

    .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: #22C55E;
    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;
}

.listing-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%);
}

.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: #22C55E;
    color: #022C22;
    box-shadow: 0px 24px 50px -12px rgba(34, 197, 94, 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;
}

.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: #22C55E;
    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: #22C55E;
    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%, #22C55E 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: #22C55E;
    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: #22C55E;
}

.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, #22C55E 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: #22C55E;
    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: #22C55E;
    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: #22C55E;
    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: #22C55E;
}

.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: #22C55E;
    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: #22C55E;
    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 #22C55E;
    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: #22C55E;
}

.family-safety-pill-icon i {
    font-size: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #22C55E;
    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: #22C55E;
}

/* 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: #22C55E;
    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 #22C55E;
    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: #22C55E;
}

.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: #22C55E;
}

.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 phone input with static +91 prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-prefix {
    font-weight: 500;
    color: #6B7280;
    white-space: nowrap;
}

.phone-input-wrapper .phone-input {
    flex: 1;
}

