@media (max-width: 1024px) {

    .auth-wrapper {
        flex-direction: row;
    }

    .auth-image {
        display: block;
        width: 45%;
    }

    .auth-form-container {
        width: 55%;
        padding: 0 24px;
    }

    /* SECTION SPACING */
    .hero-section {
        margin: 20px 30px 40px;
    }

    .about-section {
        margin: 20px 30px 40px;
    }

    /* CONTAINER */
    .hero-container {
        padding: 60px 50px;
        min-height: auto;
        gap: 30px;
    }

    .about-hero-container,
    .about-ln-hero-container,
    .hero-container {
        padding: 60px 50px;
        min-height: auto;
        gap: 30px;
    }

    /* LEFT CONTENT */
    .about-hero-left h1,
    .hero-left h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .about-ln-hero-left h1 {
        font-size: 39px;
        line-height: 1.2;
    }

    .about-hero-subtitle,
    .about-ln-hero-subtitle
    ,.hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 28px;
    }

    /* STATS */
    .hero-stats {
        gap: 16px;
        margin-bottom: 28px;
    }

    .stat-box {
        padding: 18px 20px;
        min-width: 150px;
    }

    .stat-box strong {
        font-size: 22px;
    }

    .stat-box span {
        font-size: 13px;
    }

    /* TABS */
    .hero-tabs {
        margin-bottom: 22px;
    }

    .hero-tabs .tab {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* SEARCH BAR */
    .hero-search {
        max-width: 100%;
        padding: 10px 14px;
    }

    .search-item {
        min-width: 140px;
        padding: 0 14px;
    }

    .search-item label {
        font-size: 11px;
    }

    .search-item input,
    .search-item select {
        font-size: 13px;
    }

    .search-divider {
        height: 38px;
    }

    .search-btn {
        width: 46px;
        height: 40px;
    }

    /* RIGHT IMAGE */
    .hero-right img {
        transform: scale(1.9) translateY(80px);
    }

    .about-hero-right img {
        transform: scale(1.4) translateX(40px);
    }

    .about-ln-hero-right img {
        transform: scale(1.4) translateX(50px) translateY(20px);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .category-card img {
        height: 220px;
    }

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

    .cta-section,
    .cta-overlay {
        height: 260px;
    }

    .cta-overlay {
        padding: 32px;
    }

    .cta-overlay h2 {
        font-size: 24px;
    }

    .exclusive-section {
        margin: 20px 30px 40px;
    }

    .exclusive-wrapper {
        position: relative;
        overflow: hidden;
    }
    .exclusive-track {
        overflow: hidden;
    }

    .exclusive-card {
        padding: 24px;
        gap: 22px;
    }

    .exclusive-info {
        width: 42%;
        padding: 22px;
    }

    .exclusive-image {
        width: 58%;
    }

    .project-title {
        font-size: 20px;
    }

    .nav-btn.left {
        z-index: 22;
    }

    .nav-btn.right {
        z-index: 22;
    }

    .newly-launched {
        margin: 30px 40px 50px;
    }

    .section-header {
        gap: 16px;
        align-items: flex-start;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

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

    .logo-box {
        padding: 0;
    }

    .discover-section h2 {
        font-size: 30px;
    }

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .discover-card img {
        height: 190px;
    }

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

    .advisors-main {
        gap: 30px;
    }

    .stat h3 {
        font-size: 38px;
    }

    .advisors-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature:not(:last-child) {
        border-right: none;
    }

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

    .feature:nth-child(-n+2) {
        border-bottom: 1px solid #e5e7eb;
    }

    .agents-header h2 {
        font-size: 32px;
    }

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

    .agent-image img {
        height: 240px;
    }

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

    .easy-header h2 {
        font-size: 32px;
    }

    .easy-header p {
        font-size: 15px;
    }

    .easy-card {
        min-width: 300px;
        max-width: 300px;
    }


    /* 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-inner {
        padding: 48px;
        min-height: 320px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image-wrap {
        width: 52%;
        right: -20px;
    }

    .faq-row {
        gap: 32px;
    }

    .faq-left h2 {
        font-size: 30px;
    }

    .faq-right img {
        border-radius: 18px;
    }

    .contact-section {
        padding: 32px;
    }

    .contact-row {
        gap: 32px;
    }

    .contact-wrapper {
        margin: 30px 16px 50px;
    }

    .article-card {
        overflow: visible;
    }

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

    .article-image img {
        height: 260px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-newsletter p {
        max-width: 100%;
    }

    .header-content {
        padding: 30px 24px;
    }

    .main-nav ul {
        gap: 26px;
    }

    .btn-login,
    .btn-signup {
        padding: 10px 26px;
    }

    .home-search-box {
        width: 70%;
        padding: 18px 22px;
    }

    .home-tabs {
        top: 68%;
    }

    .home-tab {
        padding: 9px 22px;
        font-size: 14px;
    }

    .home-filters {
        margin-top: 90px;
        gap: 10px;
    }

    .home-filter-group {
        padding: 10px 14px;
        font-size: 13px;
    }

    .property-card {
        gap: 24px;
        padding: 24px;
    }

    .property-image img {
        width: 360px;
    }

    .property-content h2 {
        font-size: 26px;
    }

    .main-price h3 {
        font-size: 26px;
    }

    .price-row {
        gap: 18px;
    }

    .modal-box {
        width: 420px;
        padding: 22px;
    }

    .seller-info img {
        width: 52px;
        height: 52px;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        height: 320px;
    }

    /* INFO */
    .property-info {
        padding: 24px 26px;
    }

    .info-left h1 {
        font-size: 28px;
    }

    .info-right h2 {
        font-size: 26px;
    }

    .verified-badge {
        font-size: 13px;
        padding: 5px 10px;
    }

    .action-buttons {
        gap: 10px;
    }

    .property-sections {
        margin: 24px 30px 20px;
        grid-template-columns: 1.6fr 1fr;
        gap: 30px;
    }

    .details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

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

    .tour-card {
        top: 20px;
        padding: 20px;
    }

    .date-grid {
        gap: 10px;
    }

    .unit-planning-section {
        margin: 24px 30px 20px;
    }

    .unit-image-frame {
        width: 640px;
        height: 380px;
        margin-bottom: 55px;
    }

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

    .unit-thumbnails img {
        width: 70px;
        height: 52px;
    }

    .mortgage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .donut {
        width: 260px;
        height: 260px;
    }

    .donut-inner {
        width: 190px;
        height: 190px;
        padding-top: 42px;
    }

    .donut-value {
        font-size: 24px;
    }

    .mortgage-card {
        width: 440px;
        padding: 24px;
    }

    .compare-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .compare-card {
        padding: 14px;
    }

    .card-header h4 {
        font-size: 15px;
    }

    .card-image {
        height: 140px;
    }

    .compare-amenities {
        gap: 12px 18px;
        font-size: 12.5px;
    }

    .card-price {
        font-size: 17px;
    }

    .support-area {
        margin: 24px 40px 10px;
        padding: 70px 0;
    }

    .support-area::before {
        left: -40px;
        right: -40px;
    }

    .mission-row {
        gap: 50px;
    }

    .mission-text h2 {
        font-size: 40px;
    }

    .mission-text p {
        font-size: 15px;
        max-width: 100%;
    }

    .svg-card svg {
        width: 460px;
        height: auto;
    }

    .stats-wrap {
        gap: 150px;
    }

    .stats-right h2 {
        font-size: 40px;
    }

    .dream-wrapper {
        width: 100%;
        height: 400px;
    }

    .dream-blue {
        left: 260px;
        width: 680px;
        height: 440px;
    }

    .dream-image {
        width: 440px;
        top: 110px;
    }

    .dream-text {
        top: 100px;
        left: 460px;
        width: 380px;
    }

    .dream-text h2 {
        font-size: 36px;
    }

    .chat-modal {
        width: 90vw;
        max-height: 85vh;
    }

    .chat-body {
        max-height: 45vh;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {

    .property-action {
        flex-wrap: nowrap;
    }

    .auth-image {
        display: none;
    }

    .auth-wrapper {
        flex-direction: column;
    }

    .auth-form-container {
        width: 100%;
        max-width: 520px;
        padding: 24px;
    }

    .auth-page {
        height: auto;
        min-height: 100vh;
    }

    /* SECTION SPACING */
    .about-section,
    .about-ln-section,
    .hero-section {
        margin: 16px 20px 32px;
    }

    /* HERO CONTAINER WITH BG IMAGE */
    .hero-container {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
        min-height: auto;

        background: linear-gradient(
                rgba(233, 242, 251, 0.92),
                rgba(233, 242, 251, 0.92)
        ),
        url("../images/hero-building.png") center / cover no-repeat;
    }

    .about-hero-container {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
        min-height: auto;

        background: linear-gradient(
                rgba(233, 242, 251, 0.92),
                rgba(233, 242, 251, 0.92)
        ),
        url("../images/about-hero.png") center / cover no-repeat;
    }

    .about-ln-hero-container {
        flex-direction: column;
        padding: 48px 32px;
        gap: 32px;
        min-height: auto;

        background: linear-gradient(
                rgba(233, 242, 251, 0.92),
                rgba(233, 242, 251, 0.92)
        ),
        url("../images/about-hero-1.png") center / cover no-repeat;
    }

    /* HIDE RIGHT IMAGE */
    .about-hero-right,
    .about-ln-hero-right,
    .hero-right {
        display: none;
    }

    /* LEFT CONTENT */
    .about-hero-left,
    .about-ln-hero-left,
    .hero-left {
        width: 100%;
    }

    .about-hero-left h1,
    .about-ln-hero-left h1,
    .hero-left h1 {
        font-size: 34px;
        line-height: 1.25;
    }

    .about-hero-subtitle,
    .about-ln-hero-subtitle,
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 26px;
        max-width: 100%;
    }

    /* STATS */
    .hero-stats {
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 24px;
    }

    .stat-box {
        min-width: calc(33.333% - 10px);
        padding: 16px 14px;
    }

    /* TABS */
    .hero-tabs {
        margin-bottom: 22px;
    }

    .hero-tabs .tab {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* SEARCH BAR */
    .hero-search {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 14px;
        gap: 12px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .search-item {
        min-width: 100%;
        padding: 0;
    }

    .search-divider {
        display: none;
    }

    .search-btn {
        width: 100%;
        height: 40px;
        border-radius: 14px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .category-card img {
        height: 200px;
    }

    .category-card span {
        font-size: 14px;
    }

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

    .cta-section,
    .cta-overlay {
        height: 240px;
    }

    .cta-overlay {
        padding: 28px;
    }

    .cta-overlay h2 {
        font-size: 22px;
    }

    .btn-yellow {
        padding: 11px 18px;
    }

    .exclusive-card {
        flex-direction: column;
        padding: 24px;

        /* background image instead of img */
        background: linear-gradient(
                rgba(245, 245, 245, 0.92),
                rgba(245, 245, 245, 0.92)
        ),
        url("../images/exclusive-section.png") center / cover no-repeat;
    }

    /* TEXT */
    .exclusive-info {
        width: 100%;
        padding: 22px;
        background: transparent;
        z-index: 2;
    }

    /* HIDE IMAGE BLOCK */
    .exclusive-image {
        display: none;
    }

    /* NAV BUTTONS */
    .nav-btn {
        top: 50%;
        transform: translateY(-50%);
    }

    .newly-launched {
        margin: 24px 24px 40px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
        max-width: 100%;
    }

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

    .project-image img {
        height: 200px;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .trusted-section h2 {
        font-size: 28px;
    }

    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .logo-box {
        padding: 0;
    }

    .discover-section h2 {
        font-size: 28px;
        text-align: center;
    }

    .discover-subtitle {
        text-align: center;
        font-size: 15px;
        margin-bottom: 32px;
    }

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

    .property-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-yellow {
        width: 100%;
        text-align: center;
    }

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

    .advisors-main {
        flex-direction: column;
        gap: 32px;
    }

    .advisors-image {
        height: 300px;
    }

    .advisors-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .stat h3 {
        font-size: 32px;
    }

    .stat p {
        font-size: 14px;
    }

    .advisors-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        padding: 24px;
    }

    .discover-header {
        align-items:flex-start;
        gap:12px;
    }

    #testimonial-header {
        font-size: 22px;
    }

    .agents-header {
        align-items:flex-start;
        gap:12px;
    }

    .view-all-btn{
        align-self:flex-end;
    }

    .agents-header h2 {
        font-size: 30px;
    }

    .agents-header p {
        max-width: 100%;
    }

    .view-all-btn {
        align-self: flex-start;
    }

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

    .agent-image img {
        height: 220px;
    }

    .easy-wrapper {
        margin: 24px;
    }

    .easy-header h2 {
        font-size: 30px;
    }

    .easy-header p {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .easy-cards {
        gap: 20px;
    }

    .easy-card {
        min-width: 280px;
        max-width: 280px;
        padding: 22px;
    }

    /* WRAPPER */
    .testimonial-wrapper {
        position: relative;
        height: 460px;
        overflow: visible;
        margin-top: 30px;
    }

    /* BASE CARD */
    .testimonial-card {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: auto;
        transform: translateX(-50%);
        padding: 26px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

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

    /* STACK 2 */
    .testimonial-card.stack-2 {
        z-index: 2;
        opacity: 0.55;
        transform: translateX(-50%) translateY(14px) scale(0.96);
        filter: blur(0.4px);
    }

    /* STACK 3 */
    .testimonial-card.stack-3 {
        z-index: 1;
        opacity: 0.4;
        transform: translateX(-50%) translateY(28px) scale(0.93);
        filter: blur(0.8px);
    }

    /* IMAGE */
    .testimonial-left img {
        width: 300%;
        height: 180px; /* REDUCED */
        object-fit: cover;
        border-radius: 16px;
        margin-top: 0;
    }

    /* CONTENT */
    .testimonial-content .quote {
        font-size: 44px;
        line-height: 1;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* USER */
    .testimonial-user {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .testimonial-user img {
        width: 42px;
        height: 42px;
    }

    .cta-inner {
        padding: 40px 32px;

        justify-content: center;
        flex-direction: column;
        align-items: flex-start;

        background:
                linear-gradient(
                        rgba(22, 59, 102, 0.92),
                        rgba(22, 59, 102, 0.92)
                ),
                url("/public/assets/assets/images/cta-collage.png") center / cover no-repeat;
    }

    .cta-image-wrap {
        display: none;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .faq-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-right {
        order: -1;
    }

    .faq-right img {
        height: 260px;
    }

    .faq-left h2 {
        font-size: 28px;
    }

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

    .contact-image img {
        height: 260px;
    }

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

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }


    .articles-section .section-header {
        align-items: center;
        gap: 16px;
    }

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

    .article-image img {
        height: 240px;
    }

    /* HEADER */
    .header-content {
        height: auto;
        padding: 20px;
    }

    /* HIDE DESKTOP NAV */
    .main-nav {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        border-top: 1px solid #e6e6e6;
        z-index: 999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid #eee;
    }

    .main-nav a {
        padding: 16px 20px;
        display: block;
    }

    /* SHOW MENU WHEN ACTIVE */
    .main-nav.active {
        display: block;
    }

    /* ACTIONS */
    .header-actions {
        gap: 40px;
    }

    /* SHOW HAMBURGER */
    .mobile-menu-toggle {
        display: flex;
        font-size: 22px;
        cursor: pointer;
    }

    /* HIDE POST BUTTON */
    .btn-post {
        display: none;
    }

    .main-nav li.active a::after {
         left: 90%;
        bottom: 25px;
    }

    .home-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        padding: 40px 16px 50px;
        border-radius: 18px;
    }

    .home-tabs {
        position: static;
        margin-bottom: 20px;
        justify-content: center;
    }

    .home-search-box {
        width: 55%;
        flex-direction: column;
        border-radius: 18px;
        padding: 16px;
        gap: 14px;
        margin-bottom: 0;
    }

    .home-field {
        width: 100%;
    }

    .home-divider {
        display: none;
    }

    .home-search-btn {
        width: 100%;
        height: 35px;
        border-radius: 12px;
        margin-left: 0;
    }

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

    .home-filters {
        margin-top: 24px;
        justify-content: flex-start;
        gap: 10px;
    }

    .home-filter-group {
        flex: 1 1 calc(50% - 10px);
        justify-content: space-between;
    }

    .home-filter-group.home-verified {
        justify-content: space-between;
    }

    .property-card {
        flex-direction: column;
        padding: 22px;
    }

    .property-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }

    .price-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .divider-vertical {
        display: none;
    }

    .main-price {
        width: 100%;
        text-align: left;
    }

    .info-row {
        flex-wrap: wrap;
        gap: 18px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .modal-overlay {
        padding: 20px;
    }

    .modal-box {
        width: 100%;
        max-width: 420px;
        padding: 22px;
    }

    /* HERO CARD */
    .property-details-hero {
        border-radius: 18px;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
        height: 260px;
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
    }

    /* INFO */
    .property-info {
        padding: 22px 20px;
    }

    .info-row {
        gap: 18px;
    }

    .info-left h1 {
        font-size: 24px;
    }

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

    .verified-badge {
        width: fit-content;
    }

    .info-right {
        text-align: left;
    }

    .info-right h2 {
        font-size: 24px;
    }

    .action-buttons {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 12px;
    }

    .outline-btn,
    .primary-btn {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .icon-btn {
        flex: 0 0 46px;
    }

    /* KEEP TWO COLUMNS — TIGHTENED */
    .property-sections {
        grid-template-columns: 1.6fr 1fr;
        margin: 16px 16px;
        gap: 24px;
    }

    /* HEADINGS */
    .property-block h3 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    /* DETAILS GRID */
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        font-size: 13px;
    }

    .details-grid span {
        font-size: 12px;
    }

    .details-grid strong {
        font-size: 13px;
    }

    /* DESCRIPTION */
    .property-block p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* AMENITIES */
    .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 20px;
    }

    .amenity-item i {
        font-size: 18px;
        margin-top: 8px;
    }

    .amenity-item span {
        font-size: 12px;
    }

    .amenity-item strong {
        font-size: 13px;
    }

    /* NEARBY */
    .nearby-list {
        font-size: 14px;
    }

    /* TOUR CARD */
    .tour-card {
        padding: 18px;
        top: 20px;
    }

    .tour-card h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .date-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .date-card {
        padding: 12px 0;
    }

    .date-card strong {
        font-size: 16px;
    }

    .tour-time select,
    .tour-inputs input {
        font-size: 13px;
        padding: 10px;
    }

    .tour-type button {
        font-size: 13px;
        padding: 9px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .unit-planning-section {
        margin: 20px 16px;
    }

    .section-title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .unit-image-frame {
        width: 560px;
        height: 340px;
        margin-bottom: 45px;
    }

    .unit-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .unit-thumbnails {
        gap: 12px;
        margin-top: 35px;
    }

    .unit-thumbnails img {
        width: 64px;
        height: 48px;
    }

    .mortgage-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .mortgage-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 22px;
    }

    .donut {
        width: 230px;
        height: 230px;
    }

    .donut-inner {
        width: 170px;
        height: 170px;
        padding-top: 36px;
    }

    .donut-label {
        font-size: 11px;
    }

    .donut-value {
        font-size: 22px;
    }

    .donut-legend {
        font-size: 10px;
        gap: 5px;
    }

    .mortgage-card {
        width: 100%;
        padding: 22px;
    }

    .slider-head {
        font-size: 13px;
    }

    .compare-title {
        font-size: 18px;
    }

    .compare-note {
        font-size: 12.5px;
    }

    .compare-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .compare-card {
        padding: 14px;
    }

    .card-header h4 {
        font-size: 15px;
    }

    .card-location {
        font-size: 11.5px;
    }

    .card-image {
        height: 135px;
    }

    .compare-amenities {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 18px;
        font-size: 12px;
    }

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

    .card-price {
        font-size: 16px;
    }

    .details-btn {
        font-size: 13px;
        padding: 9px;
    }

    .mission-row {
        margin-left: 40px;
        gap: 50px;
    }

    .mission-text h2 {
        font-size: 40px;
    }

    .svg-card svg {
        width: 250px;
        height: auto;
    }

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .stats-left {
        height: 360px;
    }

    .stat-card {
        width: 220px;
    }

    .stats-right h2 {
        font-size: 34px;
    }

    .stats-right p {
        font-size: 15px;
    }

    .chat-modal {
        width: 95vw;
        max-height: 90vh;
        padding: 18px;
    }

    .chat-bubble {
        max-width: 80%;
        font-size: 13px;
    }

    .chat-property {
        font-size: 13px;
        gap: 10px;
    }

    .activity-chat-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width: 430px) {

    .property-actions{
        flex-wrap: nowrap;
    }

    .discover-header, .agents-header {
        flex-direction: column;
    }
    #testimonial-header {
        font-size: 22px;
    }

    .auth-form-container h1 {
        font-size: 26px;
        text-align: center;
    }

    .social-btn {
        padding: 12px;
        font-size: 14px;
    }

    .form-group input {
        padding: 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 16px;
        font-size: 15px;
    }

    .form-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .header-actions {
        gap: 20px;
    }

    /* SECTION SPACING */
    .about-section,
    .about-ln-section,
    .hero-section {
        margin: 12px 14px 24px;
    }

    /* HERO CONTAINER */
    .hero-container {
        padding: 36px 20px;
        border-radius: 24px;

        background:
                linear-gradient(
                        rgba(233, 242, 251, 0.94),
                        rgba(233, 242, 251, 0.94)
                ),
                url("../images/hero-building.png") center / cover no-repeat;
    }

    .about-hero-container {
        padding: 36px 20px;
        border-radius: 24px;

        background:
                linear-gradient(
                        rgba(233, 242, 251, 0.94),
                        rgba(233, 242, 251, 0.94)
                ),
                url("../images/about-hero.png") center / cover no-repeat;
    }

    .about-ln-hero-container {
        padding: 36px 20px;
        border-radius: 24px;

        background:
                linear-gradient(
                        rgba(233, 242, 251, 0.94),
                        rgba(233, 242, 251, 0.94)
                ),
                url("../images/about-hero-1.png") center / cover no-repeat;
    }

    /* HEADLINE */
    .about-hero-left h1,
    .about-ln-hero-left h1,
    .hero-left h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .about-hero-subtitle,
    .about-ln-hero-subtitle,
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }

    /* STATS – STACKED BUT BALANCED */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 22px;
    }

    .stat-box {
        padding: 12px 10px;
        border-radius: 12px;
        text-align: center;
    }

    .stat-box strong {
        font-size: 18px;
    }

    .stat-box span {
        font-size: 11px;
        line-height: 1.2;
    }

    /* TABS */
    .hero-tabs {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .hero-tabs .tab {
        flex: 1;
        padding: 8px 0;
        font-size: 13px;
        text-align: center;
    }

    /* SEARCH BAR */
    .hero-search {
        padding: 14px;
        border-radius: 18px;
        gap: 10px;
    }

    .search-item {
        width: 100%;
    }

    .search-btn {
        width: 100%;
        height: 46px;
        border-radius: 14px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card img {
        height: 180px;
        border-radius: 14px;
    }

    .category-card span {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .cta-section,
    .cta-overlay {
        height: 220px;
        border-radius: 16px;
    }

    .cta-overlay {
        padding: 22px;
    }

    .cta-overlay h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .btn-yellow {
        font-size: 14px;
        padding: 10px 16px;
    }

    .exclusive-section {
        margin: 16px 16px 28px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 26px;
    }

    .exclusive-card {
        padding: 18px;
        border-radius: 22px;
    }

    .project-title {
        font-size: 18px;
    }

    .price strong {
        font-size: 22px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }


    .hero-section.newly-launched-mt {
        margin-top: 100px;
    }

    .newly-launched {
        margin: 20px 16px 36px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .view-all-btn {
        align-self: flex-start;
        margin-top: 8px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-image img {
        height: 190px;
    }

    .trusted-section h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .logo-box {
        padding: 0;
    }

    .discover-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .discover-section h2 {
        font-size: 20px;
        text-align: left;
    }

    .discover-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
        text-align: left;
    }

    .discover-card {
        padding: 14px;
    }

    .discover-card img {
        height: 180px;
    }

    .price strong {
        font-size: 16px;
    }

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

    .advisors-image {
        height: 240px;
    }

    .advisors-stats {
        align-items: center;
        text-align: center;
    }

    .stat h3 {
        font-size: 30px;
    }

    .advisors-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
        text-align: center;
    }

    .feature:last-child {
        border-bottom: none;
    }

    .agents-header h2 {
        font-size: 26px;
    }

    .agents-header p {
        font-size: 14px;
    }

    .agents-grid {
        grid-template-columns: 1fr;
    }

    .agent-card {
        padding: 14px;
    }

    .agent-image img {
        height: 200px;
    }

    .agent-stats {
        gap: 12px;
    }

    .easy-wrapper {
        margin: 20px 16px;
    }

    .easy-header h2 {
        font-size: 26px;
    }

    .easy-header p {
        font-size: 14px;
    }

    .easy-card {
        min-width: 260px;
        max-width: 260px;
    }

    .testimonial-wrapper {
        height: 420px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-content .quote {
        font-size: 42px;
    }

    .testimonial-content p {
        font-size: 15px;
    }

    .testimonial-left img {
        width: 165%;
        height: 180px;
    }

    .stars {
        font-size: 16px;
    }

    .hero-section.cta-sell-mt {
        margin-top: 0;
    }

    .cta-sell-rent {
        margin-top: 100px;
    }

    .cta-inner {
        padding: 32px 22px;
        min-height: auto;
        border-radius: 22px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .faq-left h2 {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-right img {
        height: 220px;
        border-radius: 16px;
    }

    .contact-section {
        padding: 10px 24px 24px;
    }

    .contact-wrapper {
        margin: 10px 0 40px;
    }

    .contact-image img {
        height: 220px;
        border-radius: 16px;
    }

    .contact-form label {
        font-size: 13px;
    }

    .checkbox {
        font-size: 13px;
    }

    .article-card {
        overflow: visible;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .articles-section h2 {
        font-size: 26px;
    }

    .discover-btn {
        font-size: 13px;
        padding: 9px 14px;
    }

    .article-card h3 {
        font-size: 16px;
    }

    .article-meta {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .article-image img {
        height: 220px;
    }

    .main-footer {
        padding: 15px 0 24px;
        font-size: 14px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 17px;
    }

    .newsletter-form input {
        height: 48px;
        font-size: 14px;
    }

    .newsletter-form button {
        height: 46px;
        font-size: 14px;
        padding: 0 22px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .logo img {
        height: 38px;
    }

    .btn-login,
    .btn-signup {
        padding: 8px 18px;
        font-size: 10px;
    }

    .user-icon .dropdown-toggle {
        width: 40px;
        height: 40px;
    }

    .home-hero {
        padding: 32px 14px 30px;
        border-radius: 16px;
    }

    .home-tabs {
        margin-bottom: 16px;
        padding: 5px;
    }

    .home-tab {
        padding: 8px 18px;
        font-size: 13px;
    }

    .home-search-box {
        width: 70%;
        padding: 14px;
        gap: 12px;
    }

    .home-label {
        font-size: 11px;
    }

    .home-select {
        font-size: 14px;
    }

    .home-search-btn {
        height: 30px;
        font-size: 15px;
    }

    .home-filters {
        gap: 8px;
    }

    .home-filter-group {
        flex: 1 1 1;
        padding: 10px 14px;
    }

    .property-card {
        padding: 18px;
        border-radius: 18px;
    }

    .property-image img {
        height: 220px;
        border-radius: 14px;
    }

    .property-content h2 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .price-box strong {
        font-size: 16px;
    }

    .main-price h3 {
        font-size: 22px;
    }

    .meta {
        font-size: 13px;
    }

    .info-row {
        font-size: 14px;
        gap: 14px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .modal-box {
        border-radius: 18px;
        padding: 18px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .seller-info {
        gap: 12px;
    }

    .seller-info img {
        width: 48px;
        height: 48px;
    }

    .seller-info h4 {
        font-size: 16px;
    }

    .contact-form-modal form input[type="text"] {
        padding: 13px;
        font-size: 14px;
    }

    .contact-modal-btn {
        padding: 14px;
        font-size: 15px;
    }

    /* HERO */
    .property-details-hero {
        border-radius: 16px;
    }

    /* GALLERY */
    .gallery-track {
        grid-auto-columns: calc((100% - 12px) / 1)
    }
    .gallery-grid {
        height: 220px;
    }

    .gallery-nav {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    /* INFO */
    .property-info {
        padding: 18px 16px;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .info-left h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .builder-text a {
        font-size: 14px;
    }

    .verified-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .location {
        font-size: 13px;
    }

    .info-right h2 {
        font-size: 22px;
    }

    .price-sub {
        font-size: 13px;
    }

    .action-buttons {
        gap: 8px;
    }

    .outline-btn,
    .primary-btn {
        padding: 10px;
        font-size: 10px;
    }

    .icon-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .info-row i {
        margin-right: 0;
    }

    .property-sections {
        grid-template-columns: 1fr;
        margin: 14px 20px;
        gap: 24px;
    }

    .property-block h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        font-size: 12px;
    }

    .details-grid span {
        font-size: 11px;
    }

    .details-grid strong {
        font-size: 12px;
    }

    .property-block p {
        font-size: 13px;
        line-height: 1.55;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 16px;
    }

    .amenity-item i {
        font-size: 17px;
    }

    .amenity-item span {
        font-size: 11px;
    }

    .amenity-item strong {
        font-size: 12px;
    }

    .nearby-list {
        font-size: 13px;
    }

    /* TOUR CARD */
    .tour-card {
        position: relative;
        top: auto;
        padding: 16px;
    }

    .tour-card h4 {
        font-size: 15px;
    }

    .date-card {
        padding: 10px 0;
    }

    .date-card strong {
        font-size: 15px;
    }

    .tour-time select,
    .tour-inputs input {
        font-size: 12px;
        padding: 9px;
    }

    .tour-type button {
        font-size: 12px;
        padding: 8px;
    }

    .submit-btn {
        font-size: 13px;
        padding: 11px;
    }

    .unit-planning-section {
        margin: 16px 12px;
    }

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

    .unit-image-frame {
        width: 100%;
        height: 260px;
        margin-bottom: 30px;
    }

    .unit-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .unit-thumbnails {
        gap: 10px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .unit-thumbnails img {
        width: 60px;
        height: 44px;
    }

    .mortgage-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mortgage-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .mortgage-donut {
        order: -1;
    }

    .donut {
        width: 220px;
        height: 220px;
    }

    .donut-inner {
        width: 160px;
        height: 160px;
        padding-top: 34px;
    }

    .donut-value {
        font-size: 20px;
    }

    .mortgage-card {
        width: 100%;
        padding: 20px;
    }

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

    .slider-head {
        font-size: 12.5px;
    }

    .donut-legend {
        font-size: 8px;
    }

    .compare-title {
        font-size: 16px;
        text-align: left;
    }

    .compare-note {
        font-size: 12px;
        text-align: left;
    }

    .compare-search {
        margin-bottom: 18px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .compare-card {
        padding: 14px;
    }

    .card-header h4 {
        font-size: 15px;
    }

    .card-image {
        height: 160px;
    }

    .compare-amenities {
        gap: 12px 16px;
    }

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

    .details-btn {
        font-size: 13px;
        padding: 10px;
    }

    .support-area {
        margin: 16px 20px 10px;
        padding: 50px 0;
    }

    .support-area::before {
        left: -20px;
        right: -20px;
    }

    .support-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .support-title {
        font-size: 30px;
    }

    .stats-section {
        padding: 0;
    }

    .mission-row {
        margin-left: 0;
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }

    .mission-row.reverse {
        direction: ltr;
    }

    .mission-text {
        order: 2;
    }

    .svg-card {
        order: 1;
        display: flex;
        justify-content: center;
    }

    .mission-text h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .mission-text p {
        font-size: 14px;
        line-height: 1.7;
        margin: 0 auto;
    }

    .svg-card svg {
        width: 360px;
    }

    .stats-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* RESET ABSOLUTE LAYOUT */
    .stats-left {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-card {
        position: relative;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: left;
    }

    /* REMOVE MANUAL POSITIONS */
    .c1, .c2, .c3, .c4 {
        top: auto;
        left: auto;
    }

    .stat-card .icon {
        position: static;
        display: block;
        margin-bottom: 10px;
        width: 48px;
    }

    .stats-right h2 {
        font-size: 32px;
        text-align: center;
    }

    .stats-right p {
        font-size: 14px;
        margin: 0 auto;
    }

    .chat-modal {
        width: 100vw;
        height: 78vh;
        max-height: none;
        padding: 14px;
    }

    .chat-header {
        gap: 8px;
    }

    .chat-user img {
        width: 38px;
        height: 38px;
    }

    .chat-call-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .chat-body {
        flex: 1;
        overflow-y: auto;
    }

    .chat-bubble {
        max-width: 90%;
        font-size: 13px;
        padding: 12px 14px;
    }

    .chat-footer {
        margin-top: 12px;
    }
}

@media (min-width: 414px) and (max-width: 429px)  {
    .testimonial-left img {
        width: 158%;
    }
    .property-actions{
        flex-wrap: wrap;
    }

    #testimonial-header {
        font-size: 20px;
    }
}

@media (max-width: 393px) {
    .testimonial-left img {
        width: 149%;
    }

    #testimonial-header {
        font-size: 18px;
    }
}

@media (max-width: 390px) {

    .header-actions {
        gap: 16px;
    }

    .testimonial-left img {
        width: 147%;
    }
}

@media (max-width: 384px) {
    .btn-login, .btn-signup {
        padding: 8px 8px;
    }
}

@media (max-width: 375px) {


    .auth-form-container {
        padding: 20px;
    }

    .auth-top-link {
        font-size: 13px;
    }

    .auth-form-container h1 {
        font-size: 24px;
        text-align: center;
    }

    /* SECTION */
    .about-section,
    .about-ln-section,
    .hero-section {
        margin: 10px 12px 20px;
    }

    /* CONTAINER */
    .about-hero-container,
    .about-ln-hero-container,
    .hero-container {
        padding: 32px 18px;
        border-radius: 22px;
    }

    /* HEADLINE */
    .about-hero-left h1,
    .about-ln-hero-left h1,
    .hero-left h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .about-hero-subtitle,
    .about-ln-hero-subtitle,
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* STATS */
    .hero-stats {
        gap: 8px;
        margin-bottom: 20px;
    }

    .stat-box {
        padding: 10px 8px;
    }

    .stat-box strong {
        font-size: 16px;
    }

    .stat-box span {
        font-size: 10px;
    }

    /* TABS */
    .hero-tabs .tab {
        font-size: 12px;
        padding: 8px 0;
    }

    /* SEARCH */
    .hero-search {
        padding: 12px;
        border-radius: 16px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    }

    .search-btn {
        height: 44px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-card img {
        height: 160px;
        border-radius: 12px;
    }

    .category-card span {
        font-size: 12px;
    }

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

    .cta-section,
    .cta-overlay {
        height: 200px;
    }

    .cta-overlay {
        padding: 18px;
    }

    .cta-overlay h2 {
        font-size: 18px;
    }

    .btn-yellow {
        padding: 9px 14px;
    }

    .exclusive-card {
        padding: 16px;
    }

    .exclusive-image img {
        height: 220px;
    }

    .btn-yellow {
        padding: 12px 20px;
        border-radius: 12px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .project-info h4 {
        font-size: 16px;
    }

    .project-footer span {
        font-size: 13px;
    }

    .project-image img {
        height: 180px;
    }

    .trusted-section h2 {
        font-size: 22px;
    }

    .logo-box {
        padding: 0;
    }

    .discover-section h2 {
        font-size: 22px;
    }

    .discover-card img {
        height: 170px;
    }

    .btn-yellow {
        padding: 10px 16px;
        font-size: 14px;
    }

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

    .stat h3 {
        font-size: 28px;
    }

    .feature h4 {
        font-size: 16px;
    }

    .feature p {
        font-size: 13px;
    }

    .agents-header h2 {
        font-size: 24px;
    }

    .agent-card h4 {
        font-size: 16px;
    }

    .agent-stats strong {
        font-size: 18px;
    }

    .agent-btn {
        font-size: 14px;
        padding: 10px;
    }

    .easy-header h2 {
        font-size: 24px;
    }

    .easy-card {
        min-width: 240px;
        max-width: 240px;
        padding: 20px;
    }

    .easy-card h4 {
        font-size: 16px;
    }

    .testimonial-wrapper {
        height: 400px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .testimonial-left img {
        width: 155%;
        height: 165px;
    }

    .testimonial-user h4 {
        font-size: 13px;
    }

    .cta-sell-rent {
        margin-top: 100px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 13px;
    }

    .faq-left h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-item {
        padding: 14px 0;
    }

    .contact-section {
        padding: 8px 20px 20px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 11px 12px;
    }

    .contact-form textarea {
        height: 100px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 14px;
    }

    .article-image img {
        height: 200px;
    }

    .article-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .article-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .articles-section .section-header h2 {
        margin-bottom: 0;
    }

    .newsletter-form input {
        padding: 0 18px;
    }

    .newsletter-form button {
        padding: 0 20px;
    }

    .header-actions {
        gap: 5px;
    }

    .btn-login,
    .btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }

    .home-tabs {
        gap: 6px;
    }

    .home-tab {
        padding: 7px 14px;
        font-size: 12px;
    }

    .home-search-box {
        padding: 12px;
    }

    .home-search-btn {
        height: 30px;
    }

    .home-filter-group {
        padding: 9px 12px;
        font-size: 13px;
    }

    .home-toggle {
        width: 32px;
        height: 16px;
    }

    .home-toggle::after {
        width: 12px;
        height: 12px;
    }

    .home-field i {
        font-size: 14px;
    }

    .property-card {
        padding: 16px;
    }

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

    .property-content h2 {
        font-size: 20px;
    }

    .price-box span {
        font-size: 13px;
    }

    .price-box strong {
        font-size: 15px;
    }

    .main-price span {
        font-size: 13px;
    }

    .seller img {
        width: 38px;
        height: 38px;
    }

    .modal-box {
        padding: 16px;
    }

    .modal-header h3 {
        font-size: 17px;
    }

    .seller-info span {
        font-size: 13px;
    }

    .checkbox-row {
        font-size: 13px;
    }

    /* GALLERY */
    .gallery-grid {
        height: 200px;
    }

    /* INFO */
    .property-info {
        padding: 16px 14px;
    }

    .info-left h1 {
        font-size: 20px;
    }

    .verified-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .location {
        font-size: 12px;
    }

    .info-right h2 {
        font-size: 20px;
    }

    .price-sub {
        font-size: 12px;
    }

    .outline-btn,
    .primary-btn {
        font-size: 10px;
        padding: 10px 12px;
    }

    .property-sections {
        margin: 12px 10px;
        gap: 22px;
    }

    .property-block h3 {
        font-size: 15px;
    }

    .details-grid {
        gap: 10px;
    }

    .amenities-grid {
        gap: 12px;
    }

    .amenity-item i {
        font-size: 16px;
    }

    .amenity-item strong {
        font-size: 11.5px;
    }

    .nearby-list {
        font-size: 12.5px;
    }

    .tour-card {
        padding: 14px;
    }

    .tour-card h4 {
        font-size: 14px;
    }

    .date-card strong {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 12.5px;
    }

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

    .unit-image-frame {
        height: 240px;
    }

    .unit-thumbnails img {
        width: 56px;
        height: 42px;
    }

    .donut {
        width: 200px;
        height: 200px;
    }

    .donut-inner {
        width: 145px;
        height: 145px;
        padding-top: 30px;
    }

    .donut-value {
        font-size: 18px;
    }

    .dot {
        margin-right: 0;
    }

    .mortgage-card {
        padding: 18px;
    }

    .slider-head {
        font-size: 12px;
    }

    .donut-legend {
        font-size: 7px;
        gap: 2px;
    }

    .compare-title {
        font-size: 15px;
    }

    .compare-note {
        font-size: 11.5px;
    }

    .card-header h4 {
        font-size: 14px;
    }

    .card-image {
        height: 150px;
    }

    .compare-amenity i {
        font-size: 13px;
    }

    .compare-amenity span {
        font-size: 11px;
    }

    .compare-amenity strong {
        font-size: 12px;
    }

    .card-price {
        font-size: 15px;
    }

    .support-area {
        margin: 14px 16px 8px;
        padding: 45px 0;
    }

    .support-area::before {
        left: -16px;
        right: -16px;
    }

    .support-title {
        font-size: 28px;
    }

    .svg-card svg {
        width: 330px;
    }

    .mission-text h2 {
        font-size: 28px;
    }

    .stat-card {
        max-width: 300px;
    }

    .stats-right h2 {
        font-size: 28px;
    }

    .chat-user-info h4 {
        font-size: 14px;
    }

    .chat-user-info span {
        font-size: 12px;
    }

    .chat-property {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 12px;
    }

    .chat-input {
        padding: 12px;
        gap: 8px;
    }

    .chat-input input {
        font-size: 13px;
    }
}

@media (max-width: 320px) {

    .mobile-menu-toggle {
        margin-left: 0!important;
    }
    .auth-form-container {
        padding: 16px;
    }

    .auth-form-container h1 {
        font-size: 22px;
    }

    .social-btn {
        font-size: 13px;
        padding: 10px;
    }

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

    /* SECTION */
    .about-section,
    .about-ln-section,
    .hero-section {
        margin: 8px 10px 18px;
    }

    /* CONTAINER */
    .about-hero-container,
    .about-ln-hero-container,
    .hero-container {
        padding: 28px 14px;
        border-radius: 20px;
    }

    /* HEADLINE */
    .about-hero-left h1,
    .about-ln-hero-left h1,
    .hero-left h1 {
        font-size: 23px;
        line-height: 1.25;
    }

    .about-ln-hero-subtitle,
    .about-hero-subtitle,
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }

    /* STATS */
    .hero-stats {
        gap: 6px;
    }

    .stat-box {
        padding: 8px 6px;
    }

    .stat-box strong {
        font-size: 15px;
    }

    .stat-box span {
        font-size: 9px;
        line-height: 1.2;
    }

    /* TABS */
    .hero-tabs {
        padding: 4px;
    }

    .hero-tabs .tab {
        font-size: 11px;
        padding: 6px 0;
    }

    /* SEARCH */
    .hero-search {
        padding: 10px;
        border-radius: 14px;
    }

    .search-btn {
        height: 42px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card img {
        height: 180px;
    }

    .category-card span {
        font-size: 13px;
    }

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

    .cta-section,
    .cta-overlay {
        height: 190px;
    }

    .cta-overlay {
        padding: 16px;
    }

    .cta-overlay h2 {
        font-size: 16px;
        line-height: 1.3;
    }

    .btn-yellow {
        font-size: 13px;
        padding: 8px 12px;
    }

    .exclusive-card {
        padding: 14px;
    }

    .project-title {
        font-size: 16px;
    }

    .price strong {
        font-size: 20px;
    }

    .exclusive-image img {
        height: 200px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .newly-launched {
        margin: 16px 12px 30px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .section-header p {
        font-size: 13px;
    }

    .project-image img {
        height: 165px;
    }

    .project-arrow i {
        font-size: 16px;
    }

    .trusted-section h2 {
        font-size: 20px;
    }

    .trusted-logos {
        gap: 10px;
    }

    .discover-section h2 {
        font-size: 20px;
    }

    .discover-subtitle {
        font-size: 13px;
    }

    .discover-card h4 {
        font-size: 16px;
    }

    .price strong {
        font-size: 15px;
    }

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

    .advisors-image {
        height: 200px;
    }

    .stat h3 {
        font-size: 25px;
    }

    .stat p {
        font-size: 13px;
    }

    .feature {
        padding: 20px;
    }

    .agents-header h2 {
        font-size: 22px;
    }

    .agents-header p {
        font-size: 13px;
    }

    .agent-image img {
        height: 180px;
    }

    .agent-stats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .agent-btn {
        padding: 10px;
        font-size: 13px;
    }

    .easy-wrapper {
        margin: 16px 12px;
    }

    .easy-header h2 {
        font-size: 22px;
    }

    .easy-header p {
        font-size: 13px;
    }

    .easy-card {
        min-width: 220px;
        max-width: 220px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .testimonial-wrapper {
        height: 380px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-content .quote {
        font-size: 36px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .testimonial-left img {
        width: 145%;
        height: 150px;
    }

    .stars {
        font-size: 14px;
    }

    .cta-sell-rent {
        margin-top: 100px;
    }

    .cta-inner {
        padding: 24px 18px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-btn {
        padding: 12px;
        font-size: 14px;
    }

    .faq-left h2 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .faq-right img {
        height: 200px;
    }
    .contact-section {
        padding: 10px 20px 20px;
    }

    .contact-wrapper {
        margin: 5px 0 30px;
    }

    .contact-image img {
        height: 200px;
    }

    .checkbox span {
        font-size: 12px;
    }

    .contact-form button {
        font-size: 13px;
    }

    .articles-section h2 {
        font-size: 20px;
    }

    .article-image img {
        height: 180px;
    }

    .article-meta {
        font-size: 12px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .newsletter-form input {
        font-size: 13px;
        padding: 0 10px;
    }

    .newsletter-form button {
        font-size: 13px;
        gap: 6px;
    }

    .footer-socials a {
        font-size: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .btn-login,
    .btn-signup {
        padding: 6px 10px;
        font-size: 10px;
    }

    .home-tab {
        padding: 6px 12px;
        font-size: 11px;
    }

    .home-search-box {
        padding: 10px;
    }

    .home-search-btn {
        height: 30px;
    }

    .home-filter-group {
        padding: 8px 10px;
        font-size: 12px;
    }

    .home-filter-text {
        font-size: 12px;
    }

    .home-select, .home-filter-select {
        font-size: 11px;
    }

    .property-card {
        padding: 14px;
    }

    .property-image img {
        height: 180px;
    }

    .property-content h2 {
        font-size: 18px;
    }

    .info-row {
        flex-direction: column;
        gap: 10px;
    }

    .verified {
        font-size: 11px;
        padding: 2px 8px;
    }

    .contact-btn {
        padding: 12px;
        font-size: 14px;
    }

    .modal-box {
        padding: 14px;
    }

    .modal-header h3 {
        font-size: 16px;
    }

    .seller-info img {
        width: 44px;
        height: 44px;
    }

    #verified {
        font-size: 7px;
    }
    .contact-form-modal form input[type="text"] {
        padding: 12px;
        font-size: 13px;
    }

    .contact-modal-btn {
        padding: 13px;
        font-size: 14px;
    }

    /* GALLERY */
    .gallery-grid {
        height: 180px;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    /* INFO */
    .property-info {
        padding: 14px 12px;
    }

    .breadcrumbs {
        font-size: 11px;
    }

    .info-left h1 {
        font-size: 18px;
    }

    .builder-text a {
        font-size: 13px;
    }

    .verified-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    .location {
        font-size: 12px;
    }

    .info-right h2 {
        font-size: 18px;
    }

    .price-sub {
        font-size: 11px;
    }

    .outline-btn,
    .primary-btn {
        font-size: 8px;
        padding: 9px 10px;
    }

    .icon-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .property-sections {
        margin: 10px 8px;
        gap: 20px;
    }

    .property-block h3 {
        font-size: 14px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .property-block p {
        font-size: 12px;
    }

    .amenities-grid {
        gap: 12px;
    }

    .amenity-item i {
        font-size: 15px;
    }

    .amenity-item span {
        font-size: 10.5px;
    }

    .amenity-item strong {
        font-size: 11px;
    }

    .nearby-list {
        font-size: 12px;
    }

    .tour-card {
        padding: 12px;
    }

    .date-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .submit-btn {
        font-size: 12px;
        padding: 10px;
    }

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

    .unit-image-frame {
        height: 220px;
        margin-bottom: 10px;
    }

    .unit-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .unit-thumbnails {
        gap: 8px;
        margin-top: 0;
    }

    .unit-thumbnails img {
        width: 52px;
        height: 40px;
    }

    .mortgage-title {
        font-size: 15px;
    }

    .donut {
        width: 180px;
        height: 180px;
    }

    .donut-inner {
        width: 130px;
        height: 130px;
        padding-top: 26px;
    }

    .donut-label {
        font-size: 10px;
    }

    .donut-value {
        font-size: 17px;
    }

    .dot {
        margin-right: 0;
    }
    .donut-legend {
        font-size: 7px;
    }

    .mortgage-card {
        padding: 16px;
    }

    .slider-group input[type="range"]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }

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

    .compare-note {
        font-size: 11px;
    }

    .compare-search input {
        padding: 10px 12px 10px 34px;
        font-size: 12px;
    }

    .card-header h4 {
        font-size: 13px;
    }

    .card-location {
        font-size: 11px;
    }

    .card-image {
        height: 135px;
    }

    .compare-amenities {
        gap: 10px;
    }

    .compare-more {
        grid-column: span 1;
        font-size: 11px;
    }

    .card-price {
        font-size: 14px;
    }

    .details-btn {
        font-size: 12px;
        padding: 9px;
    }

    .support-area {
        margin: 12px 12px 6px;
        padding: 40px 0;
    }

    .support-area::before {
        left: -12px;
        right: -12px;
    }

    .support-title {
        font-size: 24px;
    }

    .svg-card svg {
        width: 300px;
    }

    .mission-text h2 {
        font-size: 26px;
    }

    .mission-text p {
        font-size: 13px;
    }

    .chat-back-btn {
        font-size: 16px;
    }

    .chat-call-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .chat-bubble {
        font-size: 12px;
        padding: 10px 12px;
    }

    .chat-input {
        padding: 10px;
    }

    .chat-user-info h4, .chat-user-info span {
        font-size: 10px;
    }
}
