@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@500&family=Source+Sans+3:wght@400;500;600&display=swap');

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

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Livvic', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: auto;
    padding: 0 24px;
}

/* NAVBAR */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
    padding: 40px;
}

/* LEFT SIDE (LOGO + NAV) */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 44px;
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-weight: 500;
    color: #111;
    position: relative;
}

.mobile-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.menu-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:10px;
    text-decoration:none;
    color:#374151;
    font-weight:500;
    background:#f9fafb;
    transition:all .2s ease;
}

.menu-item i{
    font-size:16px;
    color:#6b7280;
}

.menu-item:hover{
    background:#f1f5f9;
    transform:translateX(4px);
}

.menu-item.active{
    background:#f8c12d;
    color:#111;
    font-weight:600;
}

.menu-item.active i{
    color:#111;
}

/* ACTIVE STATE */
.main-nav li.active a {
    color: #2f80ed;
}

.main-nav li.active a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background: #2f80ed;
    border-radius: 50%;
    transform: translateX(-50%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-post {
    background: #f2c94c;
    color: #000;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-login {
    padding: 10px 35px;
    border-radius: 12px;
    border: 2px solid #e6e6e6;
    font-weight: 600;
    background: #fff;
}

.btn-signup {
    background: #000;
    color: #f2c94c;
    padding: 10px 35px;
    border-radius: 12px;
    font-weight: 600;
}

.user-icon {
    position: relative;
}

.user-icon .dropdown-toggle-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
}

.dropdown-menu-custom li a:hover {
    background: #f5f5f5;
}

.dropdown-menu-custom {
    display: none;
}

.dropdown.open .dropdown-menu-custom {
    display: block;
}


.header-actions a:hover {
    opacity: 0.9;
}


.mobile-menu-toggle {
    display: none;
}


/* LOGIN PAGE */
.auth-page {
    height: 100vh;
}

.auth-page.height-max {
    height: 149vh;
}

.auth-wrapper {
    display: flex;
    height: 110%;
}

/* LEFT IMAGE */
.auth-image {
    width: 50%;
}

.auth-image-big {
    height: 125%;
}

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

/* RIGHT FORM */
.auth-form-container {
    width: 50%;
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TOP RIGHT TEXT */
.auth-top-link {
    text-align: right;
    font-size: 14px;
    margin-bottom: 33px;
    margin-top: 10px;
}

.auth-top-link a {
    color: #000;
    text-decoration: underline;
}

/* TITLE */
.auth-form-container h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 28px;
}

/* SOCIAL BUTTONS */
.social-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1.5px solid #dcdcdc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    cursor: pointer;
}

.social-btn i {
    font-size: 18px;
}

/* GOOGLE */
.social-btn.google i {
    color: #ea4335;
}

/* FACEBOOK */
.social-btn.facebook i {
    color: #1877f2;
}

.social-btn + .social-btn {
    margin-top: 14px;
}

.social-btn:hover {
    background: #fafafa;
}

/* DIVIDER */
.divider-or {
    position: relative;
    margin: 0;
    text-align: center;
}

.divider-or::before,
.divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e5e5;
}

.divider-or::before {
    left: 0;
}

.divider-or::after {
    right: 0;
}

.divider-or span {
    font-size: 13px;
    color: #777;
}

/* FORM */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1.5px solid #dcdcdc;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #2f80ed;
}

/* META */
.form-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.checkbox-label {
    font-size: 14px;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    border: none;
    background: #2f54eb;
    color: #fff;
    font-size: 16px;
    cursor: not-allowed;
}

.terms-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

/* PASSWORD TOGGLE */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 52px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.password-toggle i {
    font-size: 16px;
    color: #777;
}

.password-toggle:hover i {
    color: #000;
}

.forgot-link {
    text-decoration: underline;
}

/* FOOTER */
.main-footer {
    background: #ffffff;
    padding: 70px 0 30px;
    color: #5f5f82;
    font-size: 15px;
}

/* GRID */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* SECTIONS */
.footer-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d4e;
    margin-bottom: 12px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d4e;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.6;
}

/* LISTS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #5f5f82;
}

.footer-section ul li a:hover {
    color: #1d1d4e;
}

/* NEWSLETTER */
.footer-newsletter p {
    margin-bottom: 22px;
    max-width: 300px;
}

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

.newsletter-form input {
    height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid #d9dcec;
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    align-self: flex-start;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: #2f54eb;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: #e6e8f0;
    margin: 50px 0 30px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-socials a {
    margin-left: 16px;
    color: #2f54eb;
    font-size: 16px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    margin: 30px 60px 60px;
}

/* MAIN CONTAINER */
.hero-container {
    background: url("../images/index-page-image.png");
    border-radius: 32px;
    padding: 80px 70px;
    min-height: 520px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

/* LEFT CONTENT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 43px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin-bottom: 34px;
}

/* =========================
   STATS
========================= */

.hero-stats {
    display: flex;
    gap: 22px;
    margin-bottom: 34px;
}

.stat-box {
    padding: 22px 26px;
    border-radius: 16px;
    min-width: 170px;
}

.stat-box strong {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    display: block;
    margin-bottom: 4px;
}

.stat-box span {
    font-size: 14px;
    color: #6b7280;
}

/* =========================
   TABS (BUY / RENT / LEASE)
========================= */

.hero-tabs {
    display: inline-flex;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 26px;
}

.hero-tabs .tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    color: #111;
}

.hero-tabs .tab.active {
    background: #f2c94c;
    font-weight: 600;
}

.hero-tabs .tab {
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero-tabs .tab:hover {
    transform: translateY(-1px);
}

.hero-tabs .tab.active {
    background: #f2c94c;
    font-weight: 600;
    transform: scale(1.05);
}

.hero-search {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* CANVAS */
#accountSidebar .accordion-button:not(.collapsed) {
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

#accountSidebar .accordion-button:not(.collapsed) {
    border-radius: 0.5rem;
}

#accountSidebar .accordion-button:focus {
    box-shadow: none !important;
}

#accountSidebar .account-menu-scroll {
    overscroll-behavior: contain;
}

.list-group-item:not(.active):hover {
    background-color: #FFFFFF;
}

/* =========================
   SEARCH BAR
========================= */
.hero-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    padding: 12px 18px;
    max-width: 960px;
    margin-top: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
}

.search-item {
    padding: 0 18px;
    min-width: 160px;
}

.search-item label {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.search-item input,
.search-item select {
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #111;
    width: 100%;
}

.search-divider {
    width: 1px;
    height: 44px;
    background: #e5e7eb;
}

/* SEARCH BUTTON */
.search-btn {
    width: 52px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #f2c94c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn i {
    font-size: 16px;
    color: #111;
}

/* =========================
   RIGHT IMAGE
========================= */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-right img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    transform: scale(2.25) translateY(110px);
}


/* ===============================
   CATEGORY SECTION
================================ */

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.category-card {
    text-align: center;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
}

.category-card span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
    background: url("../images/exclusive-section.png") center/cover no-repeat;
    border-radius: 20px;
    display: flex;
    height: 300px;
    align-items: center;
}

.cta-overlay {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(0,0,0,0.45);
    color: #fff;
    height: 300px;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
}

.cta-overlay h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.btn-yellow {
    display: inline-block;
    background: #f2c94c;
    color: #111;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* =========================
   EXCLUSIVE SECTION
========================= */

.exclusive-section {
    margin: 30px 60px 60px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* WRAPPER */
.exclusive-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.exclusive-card {
    background: #f5f5f5;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 28px;
    width: 100%;
    max-width: 1200px;
}

.exclusive-track {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 420px;
    touch-action: pan-y;
    user-select: none;
}

.exclusive-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.exclusive-card.active {
    opacity: 1;
    z-index: 2;
}

.exclusive-card.prev {
    opacity: 0;
}

/* LEFT INFO */
.exclusive-info {
    width: 38%;
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.view-link {
    font-size: 12px;
    text-decoration: underline;
}

/* TEXT */
.project-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.bhk {
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-size: 16px;
    margin-bottom: 5px;
}

.price strong {
    font-size: 26px;
    font-weight: 700;
}

/* BUTTON */
.btn-yellow {
    background: #f2c94c;
    color: #111;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
    width: fit-content;
    text-decoration: none;
}

/* RIGHT IMAGE */
.exclusive-image {
    width: 62%;
    position: relative;
}

.exclusive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

/* BADGE */
.badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #f2c94c;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* NAV BUTTONS */
.nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 20%;
    background: #f2c94c;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.left {
    left: -10px;
}

.nav-btn.right {
    right: -10px;
}

/* NEWLY LAUNCHED SECTION */
.newly-launched {
    margin: 30px 60px 60px;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 720px;
    line-height: 1.6;
}

.view-all-btn {
    background: #000;
    color: #facc15;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}


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

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

/* CARD */
.project-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.25s ease;
}


/* IMAGE */
.project-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

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

/* TAGLINE */
.tagline {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #facc15;
    color: #111;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 500;
}

/* INFO */
.project-info {
    padding: 14px 6px 6px;
}

.project-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

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

.project-footer span {
    font-size: 14px;
    color: #3b82f6;
}

/* ARROW */
.project-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.project-arrow i {
    font-size: 18px;
    color: #facc15;
    line-height: 1;
}

/* HOVER POLISH */
.project-card:hover .project-arrow {
    transform: translateX(5px) translateY(-5px);
}


/* =========================
   TRUSTED SECTION
========================= */
.trusted-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.logo-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    max-height: 185px;
    max-width: 100%;
    object-fit: contain;
}

/* =========================
   DISCOVER SECTION
========================= */

.discover-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.discover-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* GRID */
.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* CARD */
.discover-card {
    background: #f7f4f0;
    border-radius: 18px;
    padding: 16px;
    transition: all .2s ease;
}

.discover-card img {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 14px;
}

.discover-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.discover-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.discover-card p a {
    color: #3b82f6;
    text-decoration: none;
}

/* FOOTER */
.property-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* PRICE */
.price span {
    font-size: 12px;
    color: #6b7280;
}

.price strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
}

/* BUTTON */
.btn-yellow {
    background: #facc15;
    color: #111;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* ADVISORS SECTION */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    text-align: left;
}

.advisors-main {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

/* IMAGE */
.advisors-image {
    flex: 2;
    border-radius: 24px;
    overflow: hidden;
}

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

/* STATS */
.advisors-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat h3 {
    font-size: 44px;
    font-weight: 700;
    color: #111;
}

.stat p {
    font-size: 16px;
    color: #6b7280;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 22px 0;
}

/* FEATURES */
.advisors-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5e7eb;
}

.feature {
    padding: 32px 24px;
    position: relative;
}

.feature:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

.feature i {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.feature p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}


/* AGENTS SECTION */
.agents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.agents-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.agents-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 760px;
    line-height: 1.6;
}

.view-all-btn {
    background: #000;
    color: #facc15;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* GRID */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.agent-card {
    background: #f4efe9;
    border-radius: 20px;
    padding: 16px;
}

/* IMAGE */
.agent-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.agent-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* TEXT */
.agent-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.agent-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.role {
    color: #3b82f6;
    font-size: 14px;
}

.verified {
    font-size: 12px;
    background: #eaf7ea;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified i {
    font-size: 10px;
}

/* STATS */
.agent-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.agent-stats strong {
    font-size: 20px;
    color: #2563eb;
}

.agent-stats span {
    font-size: 13px;
    color: #6b7280;
    display: block;
}

/* BUTTON */
.agent-btn {
    background: #facc15;
    color: #111;
    padding: 12px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
}


/* FAQ */
.faq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 18px;
    transform: rotate(180deg);
}

.faq-item.active span {
    transform: rotate(0deg);
}

.faq-answer {
    display: none;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 12px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* CONTACT */
.contact-section {
    background: #FBFBFB;
    padding: 40px;
}

.contact-wrapper {
    margin: 30px 20px 60px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #facc15;
    cursor: pointer;
}

.checkbox span {
    line-height: 1.4;
}

.contact-form button {
    background: #facc15;
    color: #111;
    padding: 12px 24px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* ARTICLE SECTION */
.articles-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.articles-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

/* BUTTON */
.discover-btn {
    background: #000;
    color: #facc15;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* GRID */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.article-card {
    background: #fff;
    border-radius: 1px;
    overflow: hidden;
}

.article-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* TAG */
.article-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e8f1ff;
    color: #2563eb;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.article-tag.blue {
    background: #eef2ff;
    color: #3b82f6;
}

/* TITLE */
.article-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0 10px;
    color: #111;
}

/* META */
.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
}

.article-meta .dot {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* EASY SECTION */
.easy-section {
    background: linear-gradient(180deg, #0b0f14, #070a0e);
    padding: 20px;
    color: #fff;
    overflow-x: hidden;
}

.easy-wrapper {
    margin: 30px 60px 30px;
}

/* HEADER */
.easy-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}

.easy-header p {
    max-width: 760px;
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* CARD WRAPPER (SWIPE) */
.easy-cards {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* hide scrollbar */
.easy-cards::-webkit-scrollbar {
    display: none;
}

.easy-cards {
    padding-inline: 20px;
    margin-inline: -20px;
}


/* CARD */
.easy-card {
    background: #fff;
    color: #111;
    min-width: 340px;
    max-width: 340px;
    padding: 26px;
    border-radius: 16px;
    scroll-snap-align: start;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.easy-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.easy-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ICON */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

/* TESTIMONIAL SECTION */
.testimonial-wrapper {
    position: relative;
    height: 340px;
    margin-top: 40px;
    overflow: hidden;
}

/* BASE CARD */
.testimonial-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 95%;
    transform: translateX(-50%);
    background: #f3ede8;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

/* ACTIVE CARD */
.testimonial-card.active {
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}

/* SECOND CARD */
.testimonial-card.stack-2 {
    z-index: 2;
    opacity: 0.35;
    transform: translateX(-50%) translateY(16px) scale(0.96);
    filter: blur(0.5px);
}

/* THIRD CARD */
.testimonial-card.stack-3 {
    z-index: 1;
    opacity: 0.2;
    transform: translateX(-50%) translateY(32px) scale(0.92);
    filter: blur(1px);
}

/* EXIT RIGHT ANIMATION */
.testimonial-card.exit-right {
    transform: translateX(120%) scale(0.95);
    opacity: 0;
}

/* LEFT IMAGE */
.testimonial-left img {
    width: 340px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 10px;
}

/* CONTENT */
.testimonial-content {
    flex: 1;
}

.testimonial-content .quote {
    font-size: 55px;
    font-weight: 700;
}

.testimonial-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 10px 0 16px;
}

.stars {
    color: #facc15;
    font-size: 18px;
}

/* USER */
.testimonial-user {
    text-align: center;
}

.testimonial-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.testimonial-user h4 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 12px;
    color: #6b7280;
}

/* CTA SECTION */
.cta-inner {
    background: #163b66;
    border-radius: 28px;
    min-height: 360px;

    position: relative;
    overflow: hidden;

    padding: 60px;
    display: flex;
    align-items: center;
}

/* LEFT CONTENT */
.cta-content {
    max-width: 520px;
    color: #fff;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 28px;
}

/* BUTTON */
.cta-btn {
    background: #facc15;
    color: #111;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* RIGHT IMAGE */
.cta-image-wrap {
    position: absolute;
    top: 0;
    right: -10px;

    width: 48%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.cta-image-wrap img {
    height: 100%;
    width: auto;
    object-fit: cover;

    border-radius: 0;
    box-shadow: none;
}


/* HOME PAGE */
.home-hero {
    height: 360px;
    border-radius: 24px;
    background: url("../images/home-hero.png") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.home-tabs {
    position: absolute;
    top: 65%;
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.55);
    padding: 6px;
    border-radius: 40px;
}

.home-tab {
    padding: 10px 26px;
    border: none;
    border-radius: 30px;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    transition:
            background-color .35s ease,
            color .35s ease,
            transform .2s ease;
}

.home-tab.active {
    background-color: #FFC83D;
    color: #000;
}

.fa-location-arrow {
    font-size: 25px;
}

.fa-chevron-down {
    font-size: 15px;
}

.home-search-box {
    background: #fff;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    width: 55%;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    margin-bottom: -40px;
}

.home-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-label {
    font-size: 12px;
    color: #999;
}

.home-select {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.home-field i {
    position: absolute;
    right: 0;
    top: 62%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.home-divider {
    width: 1px;
    height: 45px;
    background: #e5e5e5;
    margin: 0 18px;
}

.home-search-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #FFC83D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.home-search-btn i {
    font-size: 18px;
}

.home-filters {
    margin-top: 80px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
}

.home-filter-group.active {
    background: #FFC83D;
    border-color: #FFC83D;
}

.home-filter-dropdown {
    pointer-events: none;
}

.home-filter-dropdown .home-filter-select {
    pointer-events: auto;
}

.home-filter-dropdown i {
    pointer-events: none;
}

.home-filter-select {
    border: none;
    background: transparent;
    font-size: 14px;
    appearance: none;
    outline: none;
    cursor: pointer;
}

/* VERIFIED TOGGLE (FIXED) */
.home-filter-group.home-verified {
    cursor: pointer;
    background: #fff;
    border-color: #ddd;
}

.home-filter-toggle {
    display: none;
}

.home-toggle {
    width: 36px;
    height: 18px;
    background: #000;
    border-radius: 30px;
    position: relative;
}

.home-toggle::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform .3s ease;
}

.home-filter-toggle:checked + .home-toggle::after {
    transform: translateX(18px);
}

.home-filter-toggle:checked ~ .home-filter-text {
    font-weight: 600;
}

.home-filter-toggle:checked ~ .home-toggle {
    background: #000;
}

.home-filter-toggle:checked {
    display: none;
}

.home-filter-toggle:checked ~ .home-toggle,
.home-filter-toggle:checked ~ .home-filter-text {
    pointer-events: none;
}

.home-filter-toggle:checked ~ .home-toggle::after {
    transform: translateX(18px);
}

.home-filter-toggle:checked ~ .home-filter-group {
    background: #FFC83D;
}

.home-filter-toggle:checked ~ .home-filter-text {
    color: #000;
}

.home-filter-group.home-verified:has(.home-filter-toggle:checked) {
    background: #FFC83D;
    border-color: #FFC83D;
}


/* PROPERTY CARD STYLING */
.property-card {
    display: flex;
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    gap: 30px;
    margin-top: 20px;
}

.property-image{
    width: 520px;
    aspect-ratio: 520 / 340;
}

.property-image img {
    width: 420px;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.property-content {
    flex: 1;
}

.property-content h2 {
    margin: 0;
    font-size: 30px;
}

.subtitle {
    color: #777;
}

.price-box span {
    font-size: 14px;
    color: #666;
}

.price-box strong {
    display: block;
    font-size: 18px;
}

.divider-vertical {
    width: 1px;
    background: #eee;
    height: 55px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-price h3 {
    font-weight: 700;
}

.main-price--stacked {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
}

.main-price--inline {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
}

.main-price span {
    color: #777;
    font-size: 14px;
}

.main-price h3 {
    margin: 0;
    font-size: 25px;
}

.main-price span {
    font-size: 14px;
    color: #777;
}

.meta {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.info-row {
    display: flex;
    gap: 30px;
    font-size: 15px;
    margin-bottom: 20px;
}

.more-bhk {
    background:#f8f9fa;
    border-radius:8px;
    padding:6px 10px;
    text-align:center;
    min-width:90px;
}

.more-label {
    font-size:11px;
    color:#888;
    display:block;
}

.more-count {
    font-size:14px;
    font-weight:600;
    color:#333;
}

.more-bhk-wrapper{
    position:relative;
    cursor:pointer;
    text-align:center;
}

.more-label{
    font-size:12px;
    color:#777;
    display:block;
}

.more-count{
    font-size:14px;
    font-weight:600;
}


.bhk-hover-card{
    position:absolute;
    top:42px;
    left:0;
    background:white;
    border:1px solid #eee;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    padding:10px 14px;
    min-width:160px;
    display:none;
    z-index:20;
}

.more-bhk-wrapper:hover .bhk-hover-card{
    display:block;
}

.more-bhk-wrapper.active .bhk-hover-card{
    display:block;
}

.bhk-hover-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:4px 0;
    font-size:13px;
}

.bhk-hover-row strong{
    font-weight:600;
}

.property-description {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-align: justify;
    max-width: 100%;
}
.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.seller {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.seller span {
    display: block;
    font-size: 13px;
    color: #777;
}

.verified {
    margin-left: 10px;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
}

.contact-btn {
    background: #f6c453;
    border: none;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}


/* MODAL STYLING */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.modal-overlay.active {
    display: flex;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-box {
    width: 450px;
    background: #fff;
    border-radius: 22px;
    padding: 24px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.seller-info {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.seller-info img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.seller-info h4 {
    margin: 0;
    font-size: 18px;
}

.seller-info span {
    font-size: 14px;
    color: #777;
}

.phone {
    font-weight: 500;
}

.contact-form-modal form input[type="text"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin: 5px 0 6px;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    font-size: 14px;
    color: #555;
}

.checkbox-row input {
    accent-color: #f6c453;
    margin-top: 4px;
}

.contact-modal-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: #f6c453;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form-modal {
    margin-top: 10px;
}

/* CHAT MODAL */
.chat-modal {
    width: 720px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
}

/* HEADER */
.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-back-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.chat-user-info h4 {
    margin: 0;
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-user-info span {
    font-size: 13px;
    color: #6b7280;
}

.chat-badge {
    border: 1px solid #2563eb;
    color: #2563eb;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 999px;
}

.chat-call-btn {
    background: #f6c453;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

/* DIVIDER */
.chat-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 14px 0;
}

/* PROPERTY ROW */
.chat-property {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}

.chat-property a {
    color: #2563eb;
    text-decoration: none;
    display: flex;
    gap: 6px;
}

/* CHAT BODY */
.chat-body {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
#actPanelBody{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.chat-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    max-width: 70%;
}

.chat-bubble.user {
    background: #e8f0fe;
    align-self: flex-end!important;
}

.chat-bubble.seller {
    background: #fff3d6;
    align-self: flex-start!important;
    line-height: 1.6;
}

/* FOOTER */
.chat-footer {
    margin-top: 18px;
}

.chat-input {
    background: #f3f4f6;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-input input {
    border: none;
    background: transparent;
    flex: 1;
    outline: none;
    font-size: 14px;
}
/* PROPERTY DETAIL PAGE */
.property-details-divider {
    width: 100%;
    height: 1px;
    background: #eee;
}

.property-details-hero {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
}

.property-action{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

/* GALLERY */
.property-gallery {
     position: relative;
}

/* VIEWPORT */
.gallery-viewport {
    overflow: hidden;
    height: 360px;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 12px) / 3);
    gap: 6px;
    height: 100%;
    transition: transform .45s ease;
}

/* IMAGES */
.gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAV BUTTONS */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.gallery-nav.left { left: 14px; }
.gallery-nav.right { right: 14px; }

/* INFO */
.property-info {
    padding: 28px 32px;
}

.breadcrumbs {
    font-size: 14px;
    color: #2f80ed;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.info-left h1 {
    margin: 0;
    font-size: 32px;
}

/* BUILDER + VERIFIED */
.builder-verified {
    display: grid;
    grid-template-columns: auto max-content;
    align-items: center;
    gap: 14px;
    margin: 6px 0;
}

.builder-text a {
    color: #2f80ed;
    text-decoration: none;
    font-size: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    font-size: 14px;
    white-space: nowrap;
}

/* LOCATION */
.location {
    margin-top: 6px;
    color: #777;
    font-size: 14px;
}

.location i {
    margin-right: 6px;
}

/* RIGHT */
.info-right {
    text-align: right;
}

.info-right h2 {
    margin: 0;
    font-size: 30px;
    color: #2f80ed;
}

.price-sub {
    font-size: 14px;
    color: #777;
}

/* ACTION BUTTONS */
.action-buttons {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.outline-btn {
    padding: 12px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f6c453;
    cursor: pointer;
    white-space: nowrap;
}

.primary-btn {
    padding: 12px 20px;
    border-radius: 12px;
    background: #f6c453;
    border: none;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* PROPERTY SECTIONS */
.property-sections {
    margin: 30px 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-block h3 {
    color: #2f80ed;
    font-size: 20px;
    margin-bottom: 18px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    font-size: 14px;
}

.details-grid span {
    color: #777;
}

.details-grid strong {
    display: block;
    margin-top: 4px;
}

.divider {
        width: 100%;
        height: 1px;
        background: #eee;
}

.property-block p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.read-more {
    color: #2f80ed;
    font-size: 14px;
}

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

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.amenity-item i {
    font-size: 20px;
    margin-top: 10px;
}

.amenity-item span {
    font-size: 14px;
    color: #777;
    display: block;
}

.amenity-item strong {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    display: block;
    line-height: 1.3;
}

.more-amenities {
    display: inline-block;
    margin-top: 18px;
    color: #3f6fed;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.nearby-list {
    padding-left: 18px;
    color: #555;
    font-size: 15px;
}

.nearby-list li {
    list-style: inside;
}

.tour-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    position: sticky;
    top: 30px;
}

.tour-card h4 {
    color: #2f80ed;
    margin-bottom: 18px;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.date-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 0;
    text-align: center;
    cursor: pointer;
}

.date-card span {
    font-size: 14px;
    color: #666;
}

.date-card strong {
    display: block;
    font-size: 20px;
}

.date-card small {
    font-size: 14px;
    color: #777;
}

.date-card.active {
    border-color: #3f6fed;
}

.date-card.active span,
.date-card.active strong,
.date-card.active small {
    color: #3f6fed;
}

.tour-time select, .tour-inputs input {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.tour-type {
    display: flex;
    gap: 10px;
    margin: 14px 0;
}

.tour-type button {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.tour-type .active {
    border-color: #2f80ed;
    color: #2f80ed;
}

.submit-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: #f6c453;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* UNIT PLANNING SECTION */
.unit-planning-section {
    margin: 30px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    color: #2f80ed;
    font-size: 20px;
    margin-bottom: 24px;
}

/* LEFT ALIGN */
.unit-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit-image-frame {
    position: relative;
    width: 720px;
    height: 420px;
    max-width: 100%;
    margin-bottom: 65px;
}

.unit-image-frame img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}

.unit-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.unit-arrow.left {
    left: 12px;
}

.unit-arrow.right {
    right: 12px;
}


/* THUMBNAILS */
.unit-thumbnails {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}

.unit-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
}

.unit-thumbnails img.active {
    opacity: 1;
    border-color: #3f6fed;
}

/* MORTGAGE CALCULATOR */
.mortgage-title {
    color: #2f6fed;
    font-size: 20px;
    margin-bottom: 32px;
    text-align: center;
}

.mortgage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* DONUT */
.mortgage-donut {
    display: flex;
    justify-content: center;
}

.donut {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(#2f6fed 0deg 260deg, #d9d9d9 260deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-inner {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    padding-top: 50px;
}

.donut-label {
    font-size: 12px;
    color: #777;
}

.donut-value {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 700;
    color: #2f6fed;
}

.donut-legend {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    color: #777;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dot.blue { background: #2f6fed; }
.dot.gray { background: #d9d9d9; }

/* RIGHT CARD */
.mortgage-card {
    width: 500px;
    background-color: #FAFCFD;
    padding: 28px;
    border-radius: 14px;
}

.slider-group {
    margin-bottom: 26px;
}

.slider-head {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
}

/* SLIDER */
.slider-group input[type="range"] {
    width: 100%;
    height: 4px;
    appearance: none;
    background: #e0e0e0;
    border-radius: 3px;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    cursor: pointer;
}

.slider-group input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    cursor: pointer;
}

/* COMPARE SECTION */
.compare-title {
    color: #2f6fed;
    font-size: 20px;
    margin-bottom: 6px;
}

.compare-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

.compare-search {
    position: relative;
    margin-bottom: 22px;
}

.compare-search input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.compare-search i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
}

/* GRID */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.compare-card {
    background: #f6f1ed;
    border-radius: 14px;
    padding: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-header h4 {
    font-size: 16px;
    margin: 0;
}

.card-location {
    font-size: 12px;
    color: #666;
    margin: 6px 0 10px;
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.compare-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 22px;
    font-size: 13px;
    margin-top: 8px;
}

.compare-amenity {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.compare-amenity i {
    font-size: 15px;
    margin-top: 15px;
}

.compare-amenity span {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 2px;
}

.compare-amenity strong {
    font-weight: 600;
    color: #000;
    font-size: 13px;
}

.compare-more {
    grid-column: span 2;
    font-size: 12px;
    color: #2f6fed;
    cursor: pointer;
    margin-top: 6px;
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: #2f6fed;
    margin-bottom: 12px;
}

.details-btn {
    width: 100%;
    background: #f5c85b;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}


/* ABOUT PAGE */
.about-section {
    margin: 30px 60px 10px;
}

.about-hero-container {
    background: #EBEBEB;
    border-radius: 32px;
    padding: 80px 70px;
    max-height: 600px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

/* LEFT CONTENT */
.about-hero-left {
    flex: 1;
}

.about-hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin-bottom: 34px;
}

.about-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-right img {
    width: 90%;
    max-width: none;
    height: auto;
    object-fit: cover;
    transform: scale(1.15) translateX(50px);
}

/* ABOUT PAGE LN */
.about-ln-section {
    margin: 30px 60px 10px;
}

.about-ln-hero-container {
    background: #FFC33E;
    border-radius: 32px;
    padding: 80px 70px;
    max-height: 600px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

/* LEFT CONTENT */
.about-ln-hero-left {
    flex: 1;
}

.about-ln-hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 18px;
}

.about-ln-hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin-bottom: 34px;
}

.about-ln-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-ln-hero-right img {
    width: 90%;
    max-width: none;
    height: auto;
    object-fit: cover;
    transform: scale(1.49) translateX(70px) ;
}


/* SUPPORT SECTION */
.support-area {
    position: relative;
    margin: 30px 60px 10px;
    padding: 50px 0;
    z-index: 1;
}

.support-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    right: -60px;
    height: 100%;
    background: url("../images/support.png");
    z-index: -1;
}

.support-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.support-intro {
    padding-right: 40px;
}

.support-tag {
    color: #1e40af;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.support-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.2;
}

.support-card {
    color: #1e3a8a;
}

.support-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #1e3a8a;
    margin-bottom: 14px;
}

.support-main {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.support-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #1e40af;
}


/* MISSION SECTION */
.mission-section {
    background: #fff;
}

.mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
}

.mission-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}

/* COLORS */
.curve-image.pink {
    background: #f4c7c3;
}

.curve-image.yellow {
    background: #f6c85f;
}


/* STATS SECTION */
.stats-section {
    padding: 50px 50px 0;
}

.stats-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 140px;
    align-items: center;
}

/* LEFT AREA */
.stats-left {
    position: relative;
    height: 380px;
}

/* CARD */
.stat-card {
    position: absolute;
    width: 240px;
    padding: 22px 22px 26px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.stat-card h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0 6px;
    color: #1f2937;
}

.stat-card p {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.stat-card p span {
    width: 4px;
    height: 14px;
    background: #f59e0b;
    margin-right: 8px;
}

/* ICON */
.stat-card .icon {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 55px;
}

/* POSITIONS (MATCH IMAGE 1) */
.c1 { top: 20px; left: 25px; }
.c2 { top: -30px; left: 255px; }
.c3 { top: 120px; left: 270px; }
.c4 { top: 150px; left: 30px; }

/* RIGHT SIDE */
.stats-right h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.stats-right p {
    font-size: 16px;
    color: #6b7280;
    max-width: 420px;
    line-height: 1.8;
}

.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.activity-chat-layout{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:18px;
    align-items:start;
}
