* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 50px;
}

#preloader {
    background: #fffefe99;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
}

#status,
.status-mes {
    background-image: url(../../../../images/loader.gif);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.user-menu .user-avatar {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.user-menu .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nav-dropdown {
    position: relative;
}

/* Toggle */
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.25);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.arrow {
    transition: transform 0.3s ease;
}

/* Rotate arrow */
.nav-dropdown.open .arrow {
    transform: rotate(180deg);
}

/* Menu */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 250px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    list-style: none;
    padding: 6px 0;
    margin-top: 0px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
    z-index: 9999;
}

.nav-dropdown-menu li {
    padding: 10px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.nav-dropdown-menu li a{
    text-decoration: none;
    color: #fff;
}


.nav-dropdown-menu li:hover {
    background: rgba(255,255,255,0.08);
}

.user-dropdown .nav-dropdown-toggle {
    padding: 0;
    gap: 10px;
}

.user-avatar img,
.user-avatar i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-avatar i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    color: #fff;
}

/* Divider */
.nav-dropdown-menu .divider {
    height: 1px;
    margin: 6px 0;
    background: rgba(255,255,255,.15);
}

/* Danger */
.nav-dropdown-menu .danger {
    color: #ff6b6b;
}

.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../../../v2/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 640px;
    color: white;
    position: relative;
    padding-bottom: 100px;
}

.sub-hero-section{
    background: rgb(16 60 59);
    min-height: unset;
    color: white;
    position: relative;
    padding-bottom: 0px;
}
.sub-hero-section .hero-content{
    padding: 5px 50px !important;
}

.hero-content {
    max-width: 1440px;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 5px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.95;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 92px;
    width: auto;
}


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 90%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        align-items: flex-end;
        position: absolute;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .sub-hero-section .hero-content{
        padding: 20px 16px !important;
    }

}

.buy-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1.5px solid white;
    background: transparent;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.buy-dropdown:hover {
    background: rgba(255, 255, 255, 0.1);
}

.buy-dropdown svg {
    width: 18px;
    height: 18px;
}

.nav-links {
    gap: 20px;
    align-items: center;
}

.nav-links p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 0;
}

.nav-links p:hover {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.user-icon {
    width: 45px;
    height: 45px;
    background: #F5F5F5;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.user-icon i {
    color: #CF5D3B;
    font-size: 20px;
}

.user-menu svg {
    width: 24px;
    height: 24px;
}

svg.arrow{
    fill: none;
}

.post-property-btn {
    background: #CF5D3B;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    min-width: 215px;
    justify-content: center;
    transition: background 0.3s;
}

.post-property-btn:hover {
    background: #B54F32;
}

.post-property-btn span:first-child {
    white-space: nowrap;
}

.free-badge {
    background: white;
    color: black;
    padding: 3px 15px;
    border-radius: 38.462px;
    font-size: 13.35px;
    font-weight: 400;
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.33);
    font-family: 'Sora', sans-serif;
}

/* Hero Text */
.hero-content .hero-text {
    padding: 0 50px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top:40px;
    padding-bottom: 60px;
}

.hero-heading-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    line-height: 70px;
    margin: 0;
    color: white;
}

.hero-text .subtitle {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: #C8C8C8;
    line-height: 24px;
    margin: 0;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn {
    padding: 10px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: #CF5D3B;
    color: white;
    width: 223px;
}

.btn-primary:hover {
    background: #B54F32;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid white;
    width: 180px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Search Section */
.search-section {
    padding: 0;
    background: transparent;
    margin-top: -130px;
    position: relative;
    z-index: 10;
}

.search-section .container {
    padding: 0;
}

.search-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    justify-content: flex-start;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px 24px 0 0;
    backdrop-filter: blur(10px);
}

.tab-btn {
    background: #CF5D3B;
    border: 1.5px solid transparent;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 42px;
    box-shadow: 0px 4px 12px rgba(207, 93, 59, 0.3);
}

.tab-btn svg {
    width: 18px;
    height: 18px;
}

.tab-btn:not(.active) {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-btn.active {
    background: #CF5D3B;
}

.tab-btn::before {
    content: '';
    display: none;
}

.tab-btn:not(.active)::before {
    content: '';
    display: none;
}

.search-box {
    background: white;
    padding: 20px 32px;
    border-radius: 24px;
    box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: -20px auto 0;
    position: relative;
    z-index: 3;
    min-height: 68px;
}

.search-fields {
    display: flex;
    gap: 61px;
    align-items: flex-start;
    flex: 1;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.search-field label {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #969696;
    margin: 0;
    line-height: 1;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 6px 10px;
    border: none;
    background: white;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    color: #103c3b;
    outline: none;
    transition: all 0.3s;
    height: 35px;
    box-sizing: border-box;
}

.search-field select {
    width: 170px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23103c3b' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 30px;
}

.search-field input {
    width: 322px;
}

.search-field select:focus,
.search-field input:focus {
    background: white;
}

.search-field input::placeholder {
    color: #103c3b;
    font-size: 15px;
}

.search-btn {
    background: #103C3B;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    height: 48px;
    min-width: 109px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #0D302F;
}

.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 32px;
    margin-bottom: 80px;
}

.popular-label {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #CF5D3B;
    margin: 0;
    line-height: 1;
}

.popular-label::after {
    content: '';
    display: none;
}

.search-link {
    color: #010101;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 33px;
    background: white;
    border: 1px solid #ebebeb;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    cursor: pointer;
}

.search-link:hover {
    background: white;
    border-color: #CF5D3B;
    color: #010101;
    transform: none;
}

/* Properties Section */
.properties-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 40px;
}

.section-tag {
    font-size: 16px;
    color: #cf5d3b !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.recommended-tag {
    font-size: 16px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #103c3b;
}

.recommended-title {
    text-align: center;
    margin-top: 16px;
}

.recommended-header {
    align-items: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: 1;
}

.property-filters {
    display: inline-block;
}

.filter-btn {
    padding: 19px 30px;
    border: 1.5px solid #CF5D3B;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    color: #CF5D3B;
    transition: all 0.3s;
    white-space: nowrap;
    margin-bottom: 5px;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #CF5D3B;
    background: #CF5D3B;
    color: white;
}

.property-card {
    background: white;
    border-radius: 12px;
    /* overflow: hidden; */
    border: 1px solid #e9e9e9;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.property-badge-wrapper {
    position: absolute;
    top: 187px;
    left: -7px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0;
}

.property-badge-accent {
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: -8px;
    left: 0;
    background: #7065F0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.property-badge {
    position: relative;
    background: #7065F0;
    height: 32px;
    width: 118px;
    padding: 0;
    border-radius: 8px 8px 8px 0;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.property-image {
    height: 238.88px;
    background: #e5e7eb;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #181a20;
    opacity: 0.1;
}

.property-info {
    padding: 20px;
}

.check-icon {
    color: #059669;
}

.property-info h3 {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
    color: #181a20;
    line-height: 1;
}

.property-location {
    font-size: 13px;
    color: #717171;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
}

.property-features {
    display: flex;
    gap: 22.5px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #181a20;
    font-family: 'Poppins', sans-serif;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #181a20;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e9e9e9;
}

.price {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: #181a20;
}

.view-more-btn {
    background: #CF5D3B;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #B54F32;
}

/* Categories Section */
.categories-section {
    padding: 30px 0;
    background: #f9fafb;
}

.categories-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #103c3b;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    background-size: cover !important;
    background-position: center !important;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.category-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.category-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.arrow-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #CF5D3B;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(207, 93, 59, 0.3);
    transform: rotate(-45deg);
}

.arrow-btn:hover {
    background: #b84a2f;
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(207, 93, 59, 0.4);
}

.arrow-btn:hover {
    background: #CF5D3B;
    color: white;
}

/* Property Types Section */
.property-types-section {
    padding: 40px 0;
    background: #103c3b;
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.bg-shape-243 {
    width: 365.642px;
    height: 1360.748px;
    top: -242px;
    left: 1242px;
    transform: rotate(44.459deg);
}

.bg-shape-244 {
    width: 298.159px;
    height: 883.212px;
    top: 107px;
    right: -100px;
    transform: rotate(45.026deg);
}

.property-types-section::before {
    content: '';
    position: absolute;
    top: -302px;
    left: 575px;
    width: 325px;
    height: 551px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 183px 183px;
    transform: rotate(43.312deg);
    pointer-events: none;
    z-index: 1;
    box-shadow: 0px 44px 144px rgba(0, 0, 0, 0.05);
}

.property-types-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.property-types-section p.section-tag {
    color: #CF5D3B;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.property-types-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 48px;
    color: white;
}

.property-types-wrapper {
    position: relative;
    z-index: 2;
}

.property-types-grid {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.property-type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 488px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-text {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    text-align: left;
    z-index: 3;
}

.card-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #000000;
}

.card-text p {
    margin: 0;
    max-width: 90%;
    font-size: 16px;
    margin: 0;
    color: #565151;
    line-height: 26.6px;
}

.property-type-card:hover {
    transform: translateY(-8px);
}

.property-type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-card img {
    filter: blur(8px);
}

.card-text {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    text-align: left;
    z-index: 3;
}

.card-text h3 {
    font-weight: 600;
    margin: 0 0 8px;
}

.card-text p {
    margin: 0;
    line-height: 26.6px;
}

.card-overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    z-index: 2;
}

.countdown-timer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.timer-value {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.timer-label {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    width: 60px;
    height: 40px;
    border: 1.5px solid white;
    background: transparent;
    border-radius: 40px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: white;
    color: #103c3b;
}

.nav-btn.next {
    background: white;
    color: #103c3b;
}

/* Apartment Types Section */
.apartment-types-section {
    padding: 40px 0;
    background: #f9fafb;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.apartment-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #103c3b;
}

.apartment-left p {
    margin-bottom: 32px;
    color: #6b7280;
}

.apartment-right {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.apartment-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #103c3b;
}

.view-all-localities{
    color: #CF5D3B;
    font-size: 16px;
    font-weight: 600;
}

.quote-icon{
    position: absolute;
    top: auto;
    right: 10%;
}

.approval-badge {
    position: absolute;
    top: 14px;
    right: -14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #CF5D3B;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    white-space: nowrap;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    z-index: 10;
}

.approval-badge svg {
    flex-shrink: 0;
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
}

.locality-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.locality-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: #ffffff;
    border-radius: 8px;
    transition: background 0.3s;
    border: 1px solid #ddd;
}

.locality-item .title{
    color: #103c3b;
    font-weight: 600;
    font-size: 20px;
}

.property-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    align-items: center;
}

.property-count strong {
    font-size: 32px;
    color: #103c3b;
}

.property-count span {
    color: #6b7280;
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #103C3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2B2B2B;
    font-weight: 500;
}

.benefit-card p {
    font-size: 14px;
    color: #808080;
    line-height: 26px;
}

/* PG Section */
.pg-section {
    padding: 40px 0;
}

.pg-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.pg-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 24px;
    color: #103c3b;
}

.pg-left p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
    max-width: 658px;
}

.testimonial-stats {
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 700;
    color: #CF5D3B;
    margin-bottom: 8px;
}

.stat p {
    font-size: 18px;
    color: #6b7280;
}

.testimonial-card {
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: auto;
}

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.avatar {
    width: 90px;
    height: 90px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    color: #374151;
}

.testimonial-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* Location Section */
.location-section {
    padding: 40px 0;
    background: #f9fafb;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.location-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 24px;
    color: #103c3b;
}

.location-right p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.8;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-tags img{
    width: 100%;
}

.tag {
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.tag:hover {
    background: #CF5D3B;
    color: white;
}

/* Agent Section */
.agent-section {
    padding: 40px 0;
}

.agent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.agent-image {
    height: auto;
    /* background: linear-gradient(135deg, #ffffff 0%, #ff9271 100%); */
    border-radius: 12px;
}

.agent-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #103c3b;
}

.agent-right p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom{
    background-color: #103C3B;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #103C3B;
    padding: 8px 50px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 0px;
}

.social-links .fa {
    font-size: 1rem;
    text-align: center;
    background: transparent;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    margin-right: 1rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: white;
}

.social-links a .fa-facebook {
    background: #3b5998;
}

.social-links a .fa-twitter {
    background: #1da1f2;
}

.social-links a .fa-instagram {
    background: #e1306c;
}

.social-links a .fa-youtube {
    background: #cd201f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .section-content,
    .pg-content,
    .location-content,
    .agent-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 30px;
    }
}

/* Logo Slider Section */
.logo-slider-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    background: white;
}

.logo-slider-container {
    max-width: 1440px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-slider {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    animation: slide 20s linear infinite;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 12px;
    flex-shrink: 0;
}

.logo-box img {
    max-height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .navbar {
        flex-direction: column;
        gap: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .search-fields {
        flex-direction: column;
        gap: 20px;
    }

    .search-box {
        flex-direction: column;
    }

    .category-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .search-tabs {
        justify-content: center;
        margin-bottom: .5rem !important;
    }

    .footer-bottom .logo{
        display: none;
    }
    .footer-bottom .container {
        padding: 10px 24px;
    }
    .social-links .fa {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
    }
    .rating-section .rating-img {
        position: relative !important;
    }

    .locality-item .title {
        color: #103c3b;
        font-weight: 600;
        font-size: 14px;
    }

    .property-count strong {
        font-size: 14px;
        color: #103c3b;
    }

    .approval-badge {
        right: 14px;
    }
}


/* Listing Card */
.pg-section .listing-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
}

.pg-section .listing-img {
  position: relative;
  width: 45%;
}

.pg-section .listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-section .badge-new {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e4683c;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* Info */
.pg-section .listing-info {
  padding: 25px;
  width: 55%;
}

.pg-section .listing-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pg-section .location {
  font-size: 14px;
  color: #999;
}

.pg-section .meta {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 13px;
}

.pg-section .meta i {
  margin-right: 5px;
}

.pg-section .price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pg-section .view-btn {
  background: #d7663b;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .pg-section h2 {
    font-size: 30px;
  }

  .pg-section .listing-card {
    flex-direction: column;
  }

  .pg-section .listing-img,
  .pg-section .listing-info {
    width: 100%;
  }
}

/* ================= PROPERTY TYPES ================= */
/* Benefits Section */

.types-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.types-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
}

.type-card {
    background: #ffffff;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.type-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 18px 40px rgba(0,0,0,0.12); */
}

.type-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.type-info {
    padding: 16px 18px;
}

.type-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #181a20;
    margin-bottom: 4px;
}

.type-info span {
    font-size: 12px;
    color: #6b7280;
}

/* brand upload section */
.brand-upload-section {
    padding: 40px 0;
    background: #f9fafb;
    text-align: center;
}

.brand-upload-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
}
.brand-upload-section .section-eyebrow {
  color: #e4683c;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Cards */
.brand-upload-section .side-card,
.brand-upload-section .video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 440px;
}

.brand-upload-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Side images */
.brand-upload-section .side-card {
  filter: blur(2px);
  opacity: 0.75;
}

.brand-upload-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Text */
.brand-upload-section .card-text h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.brand-upload-section .card-text span {
  font-size: 13px;
  color: #888;
}

.agent-image img{
    background-size: cover;
    margin: auto;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {

    .brand-upload-section .video-card {
        height: 260px;
    }

    .types-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .filter-btn {
        padding: 8px;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 50px;
    }

    .hero-content .hero-text{
         padding: 0;
    }

    .hero-text {
        gap: 20px;
        margin-top: 40px;
    }
    .tab-btn {
        padding: 10px 10px;
    }

    .search-field select{
         width:100%;
    }

    .search-fields{
         align-items: self-start;
    }
    .search-field input {
        width: 100%;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    .nav-dropdown-toggle {
        padding: 10px 15px;
    }

    .agent-right button{
        margin:auto;
    }

    .property-badge-wrapper {
        top: 150px;
    }
}

/* ================= PRICE TABLE SECTION ================= */
.price-table-section {
    background: #f9fafb;
    padding: 40px 0;
}

.price-table-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin: 16px 0 48px;
    color: #103c3b;
}

.price-table-section .price-table {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
}

/* Header */
.price-table-section .table-head {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 2fr;
  background: #0f3f3d;
  color: #fff;
  padding: 16px 20px;
  font-weight: 600;
}

/* Rows */
.price-table-section .table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 2fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}

.price-table-section .table-row:last-child {
  border-bottom: none;
}

/* Locality */
.price-table-section .locality {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* Rate */
.price-table-section .rate {
  font-weight: 600;
}

/* Badges */
.price-table-section .yield-badge {
    background: #fde5dfc4;
    color: #b5472f;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 600;
    border: 1px solid #b5472f8f;
}

.price-table-section .trend-badge {
    background: #e6f6ea;
    color: #1b7d3a;
    border-radius: 20px;
    padding: 9px;
}

.marker{
    animation: bounce 5s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes bounce {
    0%,20%,53%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translate(10px, -10px) scale(0.85);
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
        transform: translate3d(0,-20px,0) scaleY(1.1);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
        transform: translate3d(0,-15px,0) scaleY(1.05);
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

.plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}

.plan-wrapper .plan-item {
    cursor: pointer;
}

.plan-wrapper .plan-item input {
    display: none;
}

.plan-wrapper .plan-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.plan-wrapper .plan-box h4 {
    margin-bottom: 0px;
    font-size: 14px;
}

.plan-wrapper .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.plan-wrapper .new-price {
    color: #2e7d32;
    font-size: 14px;
    font-weight: 600;
}

.plan-wrapper .plan-item input:checked + .plan-box {
    border-color: #2e7d32;
    background: #f1fff3;
}


/* Mobile Responsive */
@media (max-width: 767px) {
  .price-table-section .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-table-section .trend {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .plan-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}
}


/* rating section box */
.rating-container .rating-section {
    border-radius: 20px;
    padding: 75px 40px;
    background: linear-gradient(180deg, #FFFFFF00, #FFE5DD);
    border: 1px solid #CF5D3B;
    position: relative;
    overflow: hidden;
    height: 458px;
}

/* Decorative circle */
.rating-container .rating-section::after {
    content: "";
    position: absolute;
    right: -64px;
    top: 94%;
    width: 420px;
    height: 420px;
    border: 2px solid #f3c3ab;
    border-radius: 50%;
    transform: translateY(-50%);
}

.rating-section .rating-img{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    z-index: 99;
}

/* Title */
.rating-container .rating-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f3f3d;
  margin-bottom: 15px;
}

/* Text */
.rating-container .rating-text {
  color: #555;
  max-width: 90%;
  margin-bottom: 25px;
}

/* Stars */
.rating-container .rating-stars {
  font-size: 30px;
  letter-spacing: 6px;
  color: #c75a2b;
}

/* Mobile */
@media (max-width: 767px) {
  .rating-container .rating-section {
    padding: 30px 20px;
    text-align: center;
  }

  .rating-container .rating-text {
    max-width: 100%;
  }

  .rating-container .rating-section::after {
    display: none;
  }
}

/* ================= AUTH MODAL ================= */

.auth-modal {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

/* Close button */
.auth-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 10;
}

/* Left image */
.auth-left {
  background: url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80')
              center/cover no-repeat;
  position: relative;
}

.auth-logo {
  position: absolute;
  top: 24px;
  left: 24px;
}

.auth-logo img {
  height: 100px;
}

/* Right form */
.auth-right {
  padding: 60px 48px;
}

.auth-right h3 {
  font-weight: 700;
  color: #123c3a;
  margin-bottom: 6px;
}

.auth-right p {
  font-size: 14px;
  color: #7a8b8a;
  margin-bottom: 28px;
}

/* Inputs */
.auth-input {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

/* Password eye */
.auth-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #7a8b8a;
}

.auth-eye:hover {
  color: #123c3a;
}


/* Checkbox */
.auth-checkbox {
  font-size: 14px;
  color: #444;
}

/* Links */
.auth-link {
  font-size: 14px;
  color: #d7663b;
  text-decoration: none;
}

/* Button */
.auth-btn {
  background: #d7663b;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-size: 15px;
}

.auth-btn:hover {
  background: #c45830;
}

/* Footer */
.auth-footer {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.auth-footer a {
  color: #d7663b;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 991px) {
  .auth-right {
    padding: 40px 28px;
  }
}

.pg-right {
    scroll-behavior: smooth;
    position: relative;
}

.listing-card {
  margin: 20px 0;
  cursor: pointer;
  opacity: 0.3
}

.type-link{
    text-decoration: none;
}
/* =========================================================
   MOBILE OPTIMIZATION LAYER (SAFE OVERRIDES ONLY)
   APPEND AT END OF FILE – DO NOT REMOVE EXISTING CSS
========================================================= */

@media (max-width: 768px) {

  /* ================= GLOBAL ================= */
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Sora', sans-serif;
  }

  .container {
    padding: 0 24px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ================= TYPOGRAPHY SCALE ================= */
  h1 {
    font-size: 28px !important;
    line-height: 1.3;
    font-family: 'Sora', sans-serif;
  }

  h2 {
    font-size: 24px !important;
    line-height: 1.35;
    font-family: 'Sora', sans-serif;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.4;
    font-family: 'Sora', sans-serif;
  }

  h4 {
    font-size: 18px;
  }

  p,
  li,
  span {
    font-size: 14px;
    line-height: 1.6;
  }

  small {
    font-size: 12px;
  }

  /* ================= NAVBAR ================= */
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .nav-left {
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    right: 0;
    padding: 16px;
    border-radius: 2px;
  }

  .nav-links p,
  .nav-links a {
    font-size: 16px;
  }

  .post-property-btn {
    min-width: auto;
    font-size: 14px;
    padding: 8px 14px;
    height: auto;
  }

  /* ================= HERO ================= */
  .hero-section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-text {
    margin-top: 32px;
    gap: 16px;
    padding-bottom: 30px;
  }

  .hero-text .subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  /* ================= SEARCH ================= */
  .search-section {
    margin-top: -55px;
  }

  .search-tabs {
    padding: 16px;
    gap: 10px;
  }

  .tab-btn {
    font-size: 14px;
    height: 38px;
  }

  .search-box {
    padding: 16px;
    gap: 16px;
  }

  .search-fields {
    gap: 16px;
  }

  .search-field label {
    font-size: 12px;
  }

  .search-field input,
  .search-field select {
    font-size: 14px;
    height: 38px;
  }

  .search-btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  /* ================= GRIDS ================= */
  .category-grid,
  .benefits-grid,
  .types-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* ================= PROPERTY CARD ================= */
  .property-card {
    border-radius: 10px;
  }

  .property-image {
    height: 200px;
  }

  .property-info {
    padding: 16px;
  }

  .price {
    font-size: 15px;
  }

  .view-more-btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  /* ================= CATEGORY ================= */
  .category-card {
    min-height: 220px;
    padding: 20px;
  }

  .category-card h3 {
    font-size: 28px;
  }

  .category-card p {
    font-size: 14px;
  }

  .card-text {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  /* ================= LISTING / PG ================= */
  .pg-section .listing-card {
    margin: 16px 0;
    transform: none;
  }

  .pg-section .listing-info {
    padding: 18px;
  }

  .pg-section .price {
    font-size: 16px;
  }

  /* ================= BENEFITS ================= */
  .benefit-card {
    padding: 20px;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  /* ================= TESTIMONIAL ================= */
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  /* ================= FOOTER ================= */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column li,
  .footer-column a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 12px;
  }

  /* ================= AUTH MODAL ================= */
  .auth-right {
    padding: 28px 20px;
  }

  .auth-right h3 {
    font-size: 20px;
  }

  .auth-btn {
    height: 44px;
    font-size: 14px;
  }
}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 480px) {

  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  .hero-text {
    margin-top: 24px;
  }

  .logo img {
    height: 60px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* =====================================================
   PAGINATION – SITE MATCHING DESIGN
   Works with Laravel pagination blade
===================================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ---------- PAGE ITEM ---------- */
.pagination .page-item {
    list-style: none;
}

/* ---------- PAGE LINK ---------- */
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Sora', sans-serif;
    color: #103c3b;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ---------- HOVER ---------- */
.pagination .page-link:hover {
    background: #103c3b;
    color: #fff;
    border-color: #103c3b;
}

/* ---------- ACTIVE ---------- */
.pagination .page-item.active .page-link {
    background: #103c3b;
    border-color: #103c3b;
    color: #fff;
    cursor: default;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ---------- DISABLED ---------- */
.pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
    box-shadow: none;
}

/* ---------- PREVIOUS / NEXT ---------- */
.pagination .page-link {
    white-space: nowrap;
}

/* ---------- GRID-3 SUPPORT (optional class) ---------- */
.pagination.grid-3 {
    gap: 8px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
    .pagination {
        gap: 4px;
    }

    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
        padding: 0 10px;
    }
}

/* =====================================================
   AGENTS LISTING – MODERN UI LAYER
   Safe override (keeps old CSS)
===================================================== */

.team.blog {
    padding: 80px 0;
    background: #f9f9f9;
}

/* ---------- HEADING ---------- */
.team.blog .listing-title-bar h3 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #103c3b;
}

/* ---------- AGENT CARD ---------- */
.agent-row {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.agent-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ---------- IMAGE ---------- */
.agent-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.agent-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.agent-row:hover .agent-img img {
    transform: scale(1.05);
}

.img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.45)
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.agent-row:hover .img-fade {
    opacity: 1;
}

/* ---------- AGENT TAG ---------- */
.agent-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 3px;
    background: #103c3b;
    color: #fff;
}

/* ---------- CONTENT ---------- */

.agent-details h3 {
    font-size: 20px;
    font-weight: 600;
}

.agent-details h3 a {
    color: #103c3b;
}

.agent-details h3 a:hover {
    color: #444;
}

/* ---------- QR ---------- */
#qrWrapper {
    background: #fff;
    border-radius: 6px;
}

/* ---------- GRID SPACING ---------- */
.agent-mb {
    margin-bottom: 30px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .team.blog {
        padding: 50px 0;
    }

    .team.blog .listing-title-bar h3 {
        font-size: 26px;
    }

    .agent-img img {
        height: 220px;
    }

    .agent-content {
        padding: 0 10px;
    }
}

/* =====================================================
   SIGNUP STEPS (PERSONAL / ADDRESS) – MODERN UI
   Safe override layer
===================================================== */

/* ---------- CONTAINER ---------- */
.banner-inner {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* ---------- TITLES ---------- */
.banner-inner .sub-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #777;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.banner-inner .title {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #103c3b;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* ---------- FORM SECTION ---------- */
.password-section {
    margin-top: 20px;
}

.password-section .form-group {
    margin-bottom: 18px;
}

/* ---------- INPUTS & SELECT ---------- */
.password-section input[type="text"],
.password-section input[type="email"],
.password-section input[type="password"],
.password-section select {
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

.password-section select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* ---------- FOCUS ---------- */
.password-section input:focus,
.password-section select:focus {
    border-color: #103c3b;
    outline: none;
    box-shadow: none;
}

/* ---------- SUBMIT BUTTON ---------- */
.form-elemts input[type="submit"] {
    width: 100%;
    height: 50px;
    background: #103c3b;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-elemts input[type="submit"]:hover {
    background: #333;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .banner-inner {
        padding: 28px 22px;
        margin-bottom: 30px;
    }

    .banner-inner .title {
        font-size: 28px;
    }
}

/* =====================================================
   PROPERTY DETAILS PAGE – MODERN UI LAYER
   Safe override (keeps old CSS)
===================================================== */

.single-proper.details {
    padding: 80px 0;
    background: #f9f9f9;
}

/* ---------- HEADER ---------- */
.single-proper .listing-title-bar h3 {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #103c3b;
}

.category-tag {
    background: #103c3b;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 6px;
}

.listing-address {
    font-size: 14px;
    color: #666;
}

.listing-address i {
    color: #103c3b;
}

/* ---------- PRICE BOX ---------- */
.single.detail-wrapper {
    background: #fff;
    padding: 18px 22px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.single.detail-wrapper h4 {
    font-size: 24px;
    font-weight: 600;
    color: #103c3b;
}

/* ---------- GALLERY ---------- */
.listing-details-sliders {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.listing-details-sliders img {
    border-radius: 6px;
}

.carousel-indicators.smail-listing img {
    border-radius: 4px;
    border: 2px solid transparent;
}

.carousel-indicators.smail-listing .selected img {
    border-color: #103c3b;
}

/* ---------- CONTENT SECTIONS ---------- */
.blog-info.details,
.single.homes-content.details,
.floor-plan,
.property-location.map {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.blog-info.details h5,
.single.homes-content.details h5,
.floor-plan h5,
.property-location.map h5 {
    font-size: 20px;
    font-weight: 600;
    color: #103c3b;
    margin-bottom: 18px;
}

/* ---------- DESCRIPTION ---------- */
.blog-info.details p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

/* ---------- PROPERTY DETAILS LIST ---------- */
.single.homes-content.details .homes-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.single.homes-content.details .det {
    color: #103c3b;
    font-weight: 500;
}

/* ---------- SITE PLAN ---------- */
.floor-plan img {
    border-radius: 6px;
}

/* ---------- MAP ---------- */
.property-location.map iframe {
    border-radius: 6px;
}

/* ---------- SIDEBAR ---------- */
.sidebar .widget-boxed {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.widget-boxed-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #103c3b;
}

/* ---------- RECENT PROPERTIES ---------- */
.recent-main {
    display: flex;
    gap: 14px;
}

.recent-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.info-img h6 {
    font-size: 14px;
    font-weight: 500;
    color: #103c3b;
}

.info-img p {
    font-size: 13px;
    color: #666;
}

/* ---------- FEATURED SLIDER ---------- */
.listing-item.compact {
    border-radius: 6px;
    overflow: hidden;
}

.listing-badges span {
    font-size: 12px;
    background: #103c3b;
    color: #fff;
    border-radius: 3px;
    padding: 4px 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .single-proper.details {
        padding: 50px 0;
    }

    .single-proper .listing-title-bar h3 {
        font-size: 24px;
    }

    .single.detail-wrapper {
        margin-top: 15px;
    }
}

.plan-details {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #555;
}

.price-box {
    margin-top: 10px;
    color: #555;
}

.price-box .mrp {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 16px;
}

.price-box .price {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.plan-details ul {
    padding-left: 18px;
    color: #555;
}

.plan-details ul li {
    margin-bottom: 6px;
    color: #555;
}

.addon-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.addon-box {
    border: 2px solid #333;
    padding: 12px 10px;
    width: 150px;
    text-align: center;
    border-radius: 6px;
    background: #fff;
}

.addon-code {
    font-weight: bold;
    margin-bottom: 4px;
}

.addon-mrp {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.addon-price {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.addon-title {
    font-size: 13px;
    margin-top: 4px;
}


/* Premium Card */
.premium-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(16,60,59,0.08);
}

/* File Upload Grid */
.document-grid {
    margin-top: 20px;
}

/* Document Card */
.doc-card {
    display: block;
    background: #f9fbfb;
    border: 2px dashed #cfdedd;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    height: 100%;
}

.doc-card:hover {
    border-color: #103c3b;
    background: #f1f7f6;
    transform: translateY(-3px);
}

/* Preview Image */
.doc-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.doc-preview img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Info */
.doc-info h6 {
    margin: 0;
    font-weight: 600;
    color: #103c3b;
    font-size: 15px;
}

.doc-info p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #6c8b88;
}

/* Button polish */
input[type="submit"] {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
}

