@font-face {
    font-display: swap;
    font-family: Lato;
    font-style: normal;
    font-weight: 300;
    src: url(lato-v25-latin-300.woff2) format("woff2"), url(lato-v25-latin-300.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: url(lato-v25-latin-regular.woff2) format("woff2"), url(lato-v25-latin-regular.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: url(lato-v25-latin-700.woff2) format("woff2"), url(lato-v25-latin-700.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Playfair Display;
    font-style: normal;
    font-weight: 400;
    src: url(playfair-display-v40-latin-regular.woff2) format("woff2"), url(playfair-display-v40-latin-regular.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Playfair Display;
    font-style: normal;
    font-weight: 600;
    src: url(playfair-display-v40-latin-600.woff2) format("woff2"), url(playfair-display-v40-latin-600.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Playfair Display;
    font-style: normal;
    font-weight: 700;
    src: url(playfair-display-v40-latin-700.woff2) format("woff2"), url(playfair-display-v40-latin-700.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    src: url(inter-v20-latin-300.woff2) format("woff2"), url(inter-v20-latin-300.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: url(inter-v20-latin-regular.woff2) format("woff2"), url(inter-v20-latin-regular.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    src: url(inter-v20-latin-600.woff2) format("woff2"), url(inter-v20-latin-600.ttf) format("truetype")
}

@font-face {
    font-family: teamrami;
    src: url(teamrami.woff2) format("woff2"), url(teamrami.ttf) format("truetype"), url(teamrami.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

.icon {
    font-family: teamrami !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

:root {
    --primary: #52524F;
    --accent: #FFE512;
    --white: #FFFFFF;
    --text-body: #52524F;
    --bg-beige: #EFEEE3;
    --bg-light-grey: #F0EFE4;
    --bg-dark-overlay: rgba(0, 0, 0, .62);
    --border-color: #7878782B;
    --font-heading: "Playfair Display", serif;
    --font-body: "Lato", sans-serif;
    --font-ui: "Inter", sans-serif;
    --container-width: 1440px
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    background: #faf9f2
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden
}

.loader-content {
    text-align: center;
    width: 200px
}

.loader-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out
}

.loader-bar {
    height: 2px;
    width: 100%;
    background: #eee;
    position: relative;
    overflow: hidden
}

.loader-bar:after {
    content: "";
    position: absolute;
    left: -100%;
    height: 100%;
    width: 100%;
    background: var(--accent);
    animation: loading 1.5s infinite
}

@keyframes pulse {

    0%,
    to {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(.95);
        opacity: .8
    }
}

@keyframes loading {
    0% {
        left: -100%
    }

    to {
        left: 100%
    }
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block
}

.logo img {
    height: 45px
}

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

ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--primary);
    line-height: 1.2
}

h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 100px
}

h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 52px
}

.about-text h2 {
    font-family: Playfair Display;
    font-weight: 600;
    font-size: 52px
}

.about-text h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 21px
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 32px
}

h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px
}

.sub-title {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px
}

.text-white {
    color: var(--white)
}

.text-white-dim {
    color: #fffc;
    font-weight: 300
}

.text-center {
    text-align: center
}

.text-right-md {
    text-align: right
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: 100px 0
}

.bg-beige {
    background-color: var(--bg-beige)
}

.bg-light-grey {
    background-color: var(--bg-light-grey)
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

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

.align-start {
    align-items: flex-start
}

.mt-10 {
    margin-top: 10px
}

.sold-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-80 {
    margin-top: 80px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    line-height: 1
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white)
}

.header-actions .btn-primary {
    display: inline-block !important;
    background-color: var(--accent) !important;
    color: var(--primary) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 12px 18px !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    border-radius: 0 !important;
}

.header-actions .btn-primary:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding-top: 0
}

.site-header.sticky {
    background-color: #52524f
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

.desktop-nav ul {
    display: flex;
    align-items: center
}

.desktop-nav li {
    padding-left: 40px
}

.desktop-nav a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    display: flex;
    text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent)
}

.header-actions {
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-around
}

.social-icon {
    color: var(--accent);
    font-size: 16px;
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 24px;
    cursor: pointer
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -110%;
    width: 300px;
    height: 100vh;
    background: #f7f7f7;
    z-index: 999;
    padding: 30px;
    transition: left .6s cubic-bezier(.6, .1, .68, .53);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 15px #0000001a
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #00000080;
    z-index: 998;
    display: none
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
}

.drawer-head img {
    height: 40px
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary)
}

.mobile-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: left
}

.hero-section {
    position: relative;
    height: 80vh
}

.video-bg {
    position: absolute;
    inset: 0;
    z-index: -1
}

.video-bg video {
    width: 100%;
    height: auto;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #0000009e
}

.hero-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    height: 80vh
}

.hero-content {
    text-align: center !important;
    width: 100%;
    position: relative
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white)
}

.hero-content p {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 100%;
    margin: 0 0 30px;
    color: var(--white);
    text-align: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    color: var(--white);
    cursor: pointer
}

.about-section {
    padding-bottom: 40px
}

.video-wrapper {
    position: relative;
    overflow: hidden
}

.ratio-wide video {
    width: 100%;
    aspect-ratio: 1200/475;
    object-fit: cover
}

.parallax-section {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed
}

.dark-overlay {
    position: absolute;
    inset: 0;
    background: #00000080
}

.content-relative {
    position: relative;
    z-index: 1
}

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

.prop-card {
    position: relative;
    background: transparent
}

.prop-img {
    position: relative;
    height: 290px;
    overflow: hidden
}

.prop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.prop-card:hover .prop-img img {
    transform: scale(1.1)
}

.prop-overlay-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: #000000b3;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.prop-overlay-info h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--white);
    margin: 0
}

.prop-overlay-info .price {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px
}

.prop-meta {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: 14px;
    font-weight: 300
}

.prop-meta i {
    color: var(--accent);
    margin-right: 5px
}

.text-right-desktop {
    text-align: right
}

.sale-slider-mobile .swiper-pagination-bullet-active {
    background: #fff
}

.align-center {
    align-items: center
}

.flex-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative
}

.sold-slider-full {
    flex: 1;
    overflow: hidden;
    padding-bottom: 50px
}

.sold-slider-full .grid-2-col {
    gap: 20px
}

.gradient-bg {
    background: linear-gradient(180deg, #9bbbe2, #e5f1ff);
    padding-bottom: 40px;
    position: relative
}

.sold-slider-full .swiper-slide {
    margin-bottom: 30px
}

.overlap-img {
    padding: 0 10px;
    position: relative;
    z-index: 2
}

.overlap-img img {
    height: 330px;
    width: 100%;
    object-fit: cover
}

.sold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 40px 0
}

.sold-content h3 {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary)
}

.sold-content h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary)
}

.sold-content h5 {
    margin: 30px
}

.sold-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px
}

.sold-meta li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px
}

.sold-meta i {
    width: 25px;
    color: var(--accent);
    margin-right: 10px
}

.sold-meta .icon {
    margin-right: 10px;
    color: var(--accent);
    font-size: 20px
}

.sold-nav-next,
.sold-nav-prev {
    color: var(--primary);
    top: 50%;
    transform: translateY(-50%)
}

.sold-nav-next:after,
.sold-nav-prev:after {
    font-size: 20px;
    font-weight: 700
}

.sold-nav-dots .swiper-pagination-bullet-active {
    background: var(--primary)
}

.sold-nav-btn {
    cursor: pointer;
    color: var(--primary);
    font-size: 32px;
    transition: all .3s ease;
    -webkit-user-select: none;
    user-select: none;
    padding: 10px;
    z-index: 10
}

.sold-nav-btn:hover {
    color: var(--accent)
}

.sold-nav-dots {
    bottom: 0 !important
}

.sold-nav-prev {
    transform: rotate(90deg)
}

.sold-nav-next {
    transform: rotate(-90deg)
}

.sold-nav-prev svg path,
.sold-nav-next svg path {
    fill: var(--primary)
}

.sold-nav-prev:hover svg path,
.sold-nav-next:hover svg path {
    fill: var(--accent)
}

.ratio-square {
    aspect-ratio: 1/1
}

.ratio-square video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.why-rami {
    padding: 0
}

.why-rami .container {
    padding-right: 0
}

.icon-box {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.icon-box .icon {
    font-size: 40px;
    color: var(--accent);
    min-width: 50px
}

.icon-box h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600
}

.icon-box p {
    font-size: 14px;
    font-weight: 300
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll 25s linear infinite
}

.stat-item {
    flex: 0 0 300px;
    text-align: center;
    padding: 20px
}

.stat-item .icon {
    font-size: 50px;
    color: var(--accent);
    display: block;
    margin-bottom: 20px
}

.stat-item .plus {
    color: var(--accent)
}

.stat-item i {
    font-size: 50px;
    color: var(--primary);
    display: block;
    margin-bottom: 20px
}

.stat-num {
    font-family: var(--font-ui);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 20px;
    display: block;
    margin-top: 10px
}

.cta-section {
    position: relative;
    padding: 0;
    justify-content: center;
    background-image: url(modern-room-with-balcony.jpg);
    background-repeat: no-repeat;
    background-size: cover
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px
}

.cta-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center
}

.cta-content .text-div {
    padding: 3rem
}

.cta-section .overlay-img {
    display: flex;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    align-items: flex-end;
    justify-content: flex-end
}

.cta-section .overlay-img img {
    width: 50%
}

.testimonial-slider {
    padding-bottom: 35px;
    -webkit-overflow-scrolling: touch
}

.testimonial-slider .swiper-slide {
    margin-bottom: 40px
}

.testi-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.testi-card p {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px
}

.testi-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover
}

.testi-user span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--primary)
}

.news-card {
    background: var(--bg-light-grey)
}

.news-img img {
    width: 100%;
    height: 250px;
    object-fit: cover
}

.news-body {
    padding: 25px
}

.news-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    font-size: 12px;
    margin-top: 15px;
    display: inline-block;
    letter-spacing: 1px
}

.site-footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 120px;
    position: relative
}

.footer-bg-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: var(--primary);
    background-size: contain;
    pointer-events: none
}

.footer-bg-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: var(--primary);
    background-size: contain;
    pointer-events: none
}

.footer-grid {
    display: grid;
    grid-template-columns: 35% 20% 20% 20%;
    gap: 30px;
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px
}

.footer-widget ul {
    margin: 0
}

.footer-widget a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    align-items: flex-start
}

.footer-contact li i,
.footer-contact li span {
    width: 25px;
    color: var(--accent);
    margin-top: 5px
}

.footer-social a {
    color: var(--accent);
    margin-right: 15px;
    font-size: 18px;
    text-decoration: none;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 200px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 25px 0;
    font-size: 12px
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

.testimonial-slider {
    overflow: hidden;
    position: relative
}

.swiper-slide {
    height: auto
}

.mobile-menu-drawer {
    left: -110%;
    transition: left .6s cubic-bezier(.6, .1, .68, .53)
}

.mobile-menu-drawer.open {
    left: 0
}

.mobile-menu-overlay.open {
    display: block
}

.text-right-mobile {
    display: none
}

@media(min-width: 1025px) {
    .sale-slider-mobile .swiper-wrapper {
        display: grid !important;
        transform: none !important
    }

    .sale-pagination {
        display: none
    }
}

@media(max-width: 1024px) {
    .container {
        max-width: 1024px
    }

    .hero-content h1 {
        font-size: 35px
    }

    .hero-content p {
        font-size: 14px
    }

    .desktop-nav {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .grid-2-col,
    .grid-3-col,
    .footer-grid,
    .sold-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .property-grid {
        grid-template-columns: 1fr 1fr
    }

    .property-grid {
        display: flex;
        gap: 0
    }

    .sale-slider-mobile {
        padding-bottom: 40px;
        overflow: hidden
    }

    .prop-card {
        height: auto
    }

    .text-right-desktop {
        text-align: left
    }

    .header-inner {
        padding: 0 10px
    }

    .sold-grid {
        padding: 30px 20px
    }

    .overlap-img {
        margin-top: -30px
    }

    .overlap-img img {
        height: 400px
    }
}

@media(max-width: 767px) {
    .hero-section {
        min-height: 650px
    }

    .hero-content h1 {
        font-size: 25px
    }

    .property-grid {
        grid-template-columns: 1fr
    }

    .testi-card {
        flex: 0 0 85vw
    }

    .cta-content .text-div {
        padding: 2rem
    }

    .cta-section .overlay-img img {
        width: 30%
    }

    .cta-section h2 {
        font-size: 30px;
        margin-bottom: 10px
    }

    .cta-section p {
        font-size: 14px
    }

    .btn-primary {
        font-size: 11px;
        padding: 14px 20px
    }

    .hero-content p {
        font-size: 11px
    }

    .section-padding {
        padding: 60px 0
    }

    .mt-80 {
        margin-top: 40px
    }
}

@media(max-width: 500px) {
    * {
        text-align: center
    }

    .container {
        padding: 0 10px
    }

    .grid-2-col,
    .grid-3-col,
    .footer-grid,
    .sold-grid {
        gap: 15px
    }

    p {
        font-size: 13px;
        text-align: justify
    }

    .hero-content {
        text-align: center
    }

    .hero-content h1 {
        font-size: 34px
    }

    .hero-content p {
        font-size: 11px;
        text-align: center;
        max-width: unset
    }

    .scroll-down {
        width: 40px;
        height: 40px;
        left: calc(50% - 20px)
    }

    .text-right-desktop {
        display: none
    }

    .text-right-mobile {
        display: block;
        margin-top: 15px
    }

    h2 {
        font-size: 36px
    }

    .parallax-section {
        padding: 60px 0;
        background-attachment: scroll
    }

    .flex-nav-wrapper {
        gap: 0
    }

    .overlap-img img {
        height: auto
    }

    #sold .mb-40 {
        margin: 15px
    }

    .sold-content h3 {
        font-size: 22px
    }

    .sold-content h4 {
        font-size: 14px;
        font-weight: 400
    }

    .sold-content h5 {
        margin: 10px
    }

    .sold-content p {
        font-size: 11px;
        line-height: 1.3;
        padding: 0 10px
    }

    .sold-meta {
        justify-items: center
    }

    .sold-nav-btn {
        font-size: 14px;
        padding: 5px
    }

    .sold-slider-full .swiper-slide {
        margin-bottom: 10px
    }

    .why-rami {
        padding: 60px 0 0
    }

    .why-rami h2 {
        font-size: 21px
    }

    .why-rami .mb-50 {
        margin-bottom: 25px
    }

    .why-rami .container {
        padding-right: 10px
    }

    .icon-box {
        gap: 10px;
        align-items: center;
        flex-direction: column
    }

    .icon-box h4 {
        font-size: 20px;
        margin-bottom: 5px;
        text-align: center
    }

    .icon-box p {
        font-size: 14px;
        font-weight: 300;
        text-align: center
    }

    .stat-item {
        flex: 0 0 145px
    }

    .stat-item .icon {
        font-size: 30px;
        margin-bottom: 10px
    }

    .stat-num {
        font-size: 21px
    }

    .stat-label {
        font-size: 14px;
        margin-top: 5px
    }

    .sub-title {
        font-size: 11px;
        margin-bottom: 5px
    }

    .about-text h2 {
        font-size: 36px
    }

    .about-text h3 {
        font-size: 16px
    }

    .testimonials-section .mb-30 {
        margin-bottom: 15px
    }

    .testi-card p {
        font-size: 14px;
        text-align: center;
        line-height: 1.4
    }

    .testi-user {
        justify-content: center;
        margin-top: 5px
    }

    .testi-user img {
        width: 30px;
        height: 30px
    }

    .news-body p {
        text-align: center
    }

    .footer-widget * {
        text-align: left
    }

    .footer-logo {
        margin-bottom: 0;
        max-width: 200px;
        margin-top: 20px
    }
}

/* Pagination Styles */
.results-count {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    padding: 0 10px;
}

.pagination-wrapper .page-numbers.prev:hover,
.pagination-wrapper .page-numbers.next:hover {
    color: var(--accent);
    background: transparent;
}

.pagination-wrapper .icon {
    font-size: 14px;
    margin: 0 5px;
}

/* Property Card Overlay Style */
.prop-card-overlay {
    position: relative;
    height: 512px;
    overflow: hidden;
    background: #000;
}

.prop-card-link {
    display: block;
    width: 100%;
    height: 513px;
    position: relative;
}

.prop-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.prop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prop-card-overlay:hover .prop-img-wrapper img {
    transform: scale(1.05);
}

.prop-gradient-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.prop-content-absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prop-street-sm {
    font-family: var(--font-body);
    font-size: 14px;
    color: #eee;
    margin-bottom: 5px;
    font-weight: 400;
}

.prop-suburb-lg {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: capitalize;
}

.prop-meta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #eee;
}

.prop-meta-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prop-meta-row i {
    color: #fff;
    font-size: 16px;
}

.prop-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-price-lg {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.btn-view-details {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-view-details:hover {
    background-color: #fff;
    color: var(--primary);
}

@media (max-width: 1024px) {
	.header-actions .btn-primary{
		margin-right:10px;
	}
}
@media (max-width: 768px) {
	.hero-section{
		height:61vh;
	}
	.video-bg video{
		height:100%;
	}
	.hero-overlay-content{
		height:61vh;
	}
    .prop-card-overlay {
        height: 400px;
    }

    .prop-suburb-lg {
        font-size: 32px;
    }

    .prop-price-lg {
        font-size: 24px;
    }

    .prop-content-absolute {
        padding: 20px;
    }
}
@media (max-width: 500px) {
	.logo img{
		height:26px;
	}
	.header-actions .btn-primary{
		font-size:11px !important;
	}
	.hero-section{
		height: 340px;
		min-height:auto;
	}
	
	.hero-overlay-content{
		height:340px;
	}
	.hero-content h1 {
        font-size: 25px;
    }
	.hero-content p {
        font-size: 10px;
        margin-bottom: 0px;
        text-align: center;
        max-width: unset;
    }
	.scroll-down {
        width: 30px;
        height: 30px;
        left: calc(50% - 20px);
        bottom: 15px;
    }
	.prop-content-absolute {
        padding: 10px;
		padding-bottom:20px;
    }
	.prop-street-sm{
		font-size: 13px;
		text-align:left;
	}
	.prop-suburb-lg {
        font-size: 23px;
        text-align: left;
    }
	.prop-meta-row {
    	display: flex;
    	gap: 10px;
    	margin-bottom: 5px;		
    	margin-top: 5px;
    	font-size: 14px;
    	color: #eee;
	}
	.prop-price-lg {
        font-size: 17px;
        text-align: left;
    }
	.pro-price-btn{
		width:108px;
	}
	.btn-view-details{
		padding: 10px 13px;
		font-size: 11px;
		display:inline;
	}
	.menu-item{
		text-align:left;
	}
}
.prop-badge-sold {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 1px;
}

/* Saturation filter for sold properties */
#sold .prop-img-wrapper img {
    filter: saturate(0.5);
}
