:root {
    --teal: #246672;
    --teal2: #194b55;
    --gold: #f99e0f;
    --ink: #2f2f2f;
    --muted: #68737a;
    --bg: #f7f7f5;
    --card: #fff;
    --soft: #eef3f3;
    --line: rgba(47, 47, 47, .1);
    --shadow: 0 18px 50px rgba(25, 55, 60, .12)
}

html[data-theme=dark] {
    --bg: #101719;
    --card: #172124;
    --soft: #1d2b2f;
    --ink: #f3f6f5;
    --muted: #b4c0c3;
    --line: rgba(255, 255, 255, .1);
    --shadow: 0 18px 50px rgba(0, 0, 0, .3)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.7;
    transition: .3s
}

a {
    text-decoration: none;
    color: inherit
}

.section {
    padding: 95px 0
}

.container {
    max-width: 1240px
}

.eyebrow {
    color: var(--gold);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: inline-flex;
    gap: 10px;
    align-items: center
}

.eyebrow:before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--gold)
}

.display-title,
.section-title {
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.02
}

.display-title {
    font-size: clamp(2.7rem, 6vw, 6rem)
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 4rem)
}

.lead {
    color: var(--muted);
    font-size: 1.08rem
}

.btn {
    border-radius: 10px;
    font-weight: 800;
    padding: 12px 19px;
    transition: .35s
}

.btn:hover {
    transform: translateY(-3px)
}

.btn-brand {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #172124
}

.btn-dark-brand {
    background: var(--teal);
    border: 1px solid var(--teal);
    color: #fff
}

.btn-outline-brand {
    border: 1px solid var(--gold);
    color: var(--ink)
}

.btn-outline-brand:hover {
    background: var(--gold);
    color: #172124
}

.topbar {
    background: #102c32;
    color: #d9e5e6;
    padding: 7px 0;
    font-size: .8rem
}

.topbar .in {
    display: flex;
    justify-content: space-between
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--card) 92%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.navbar-brand img {
    width: 170px
}

.nav-link {
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 8px !important;
    position: relative;
    color: var(--ink) !important
}

.nav-link:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 28px;
    background: var(--gold);
    bottom: 2px;
    left: 8px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1)
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--ink);
    border-radius: 50%
}

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 25, 29, .92), rgba(8, 25, 29, .55), rgba(8, 25, 29, .2)), url("/assets/images/hero-img.avif") center/cover;
    animation: zoom 12s ease-in-out infinite alternate
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0
}

@keyframes zoom {
    to {
        transform: scale(1.08)
    }
}

.hero p {
    max-width: 720px;
    color: #e7eeee
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px
}

.trust {
    background: var(--card);
    border-bottom: 1px solid var(--line)
}

.trust .item {
    padding: 22px 15px;
    border-right: 1px solid var(--line);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .07em
}

.trust i {
    color: var(--gold)
}

.image-card,
.property-card,
.service-card,
.blog-card,
.page-card,
.testimonial {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.image-card {
    box-shadow: var(--shadow)
}

.image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: .8s
}

.image-card:hover img {
    transform: scale(1.04)
}

.service-card,
.page-card {
    padding: 28px;
    height: 100%;
    transition: .35s
}

.service-card:hover,
.property-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(36, 102, 114, .1);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 20px
}

.service-card h3,
.property-card h3 {
    font-weight: 850
}

.service-card ul {
    padding-left: 18px;
    color: var(--muted);
    font-size: .9rem
}

.link {
    color: var(--teal);
    font-weight: 850;
    font-size: .8rem
}

.property-card {
    height: 100%;
    transition: .35s
}

.property-img {
    height: 255px;
    overflow: hidden;
    position: relative
}

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

.property-card:hover .property-img img {
    transform: scale(1.06)
}

.badge-status {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #172124;
    border-radius: 7px;
    padding: 5px 9px;
    font-size: .7rem;
    font-weight: 850
}

.property-body {
    padding: 22px
}

.property-location {
    color: var(--muted);
    font-size: .85rem
}

.property-price {
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 900;
    margin: 12px 0
}

.property-meta {
    border-top: 1px solid var(--line);
    padding-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .78rem
}

.project {
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: var(--shadow)
}

.project img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s
}

.project:hover img {
    transform: scale(1.05)
}

.project:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 25, 29, .95), transparent 75%)
}

.project .content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px
}

.why {
    background: #0d2024;
    color: #fff
}

.why-item {
    padding: 23px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.why-item p {
    color: #b6c6c8;
    margin: 0
}

.mart {
    background: linear-gradient(135deg, #1a5059, #0d2d33);
    color: #fff;
    border-radius: 25px;
    padding: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow)
}

.mart:after {
    content: "PROPERTY MART";
    position: absolute;
    right: -30px;
    bottom: -45px;
    font-size: 6rem;
    font-weight: 950;
    color: rgba(255, 255, 255, .04)
}

.stake {
    display: inline-block;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    font-size: .78rem;
    margin: 3px
}

.cta {
    background: var(--gold);
    color: #172124
}

.form-control,
.form-select {
    background: var(--card);
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 12px 14px;
    border-radius: 10px
}

.form-control:focus,
.form-select:focus {
    background: var(--card);
    color: var(--ink);
    border-color: var(--teal);
    box-shadow: 0 0 0 .2rem rgba(36, 102, 114, .12)
}

.site-footer {
    background: #0b1b1f;
    color: #d9e4e5;
    padding: 70px 0 20px
}

.site-footer a {
    color: #b8c7c9
}

.site-footer a:hover {
    color: #fff
}

.footer-brand img {
    width: 205px;
    /*filter: brightness(0) invert(1) */
}

.footer-title {
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 17px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 45px;
    padding-top: 20px;
    color: #91a4a7;
    font-size: .78rem
}

.page-hero {
    background: #102f35;
    color: #fff;
    padding: 105px 0 80px;
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(249, 158, 15, .25);
    right: -150px;
    top: -190px;
    transform: rotate(45deg)
}

.feature-list {
    list-style: none;
    padding: 0
}

.feature-list li {
    display: flex;
    gap: 10px;
    margin: 9px 0;
    color: var(--muted)
}

.feature-list i {
    color: var(--gold)
}

.filter {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(20, 50, 55, .06)
}

.sticky {
    position: sticky;
    top: 105px
}

.detail-img {
    height: 510px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s
}

.reveal.show {
    opacity: 1;
    transform: none
}

.loader {
    position: fixed;
    inset: 0;
    background: #102f35;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: .5s
}

.loader.hide {
    opacity: 0;
    visibility: hidden
}

.spinner {
    width: 55px;
    height: 55px;
    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

#top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: none;
    z-index: 900
}

@media(max-width:991px) {
    .topbar {
        display: none
    }

    .navbar-collapse {
        background: var(--card);
        padding: 12px;
        border-radius: 12px;
        margin-top: 10px
    }

    .hero {
        min-height: 760px
    }

    .section {
        padding: 70px 0
    }

    .mart {
        padding: 40px 25px
    }

    .detail-img {
        height: 370px
    }
}

/* Custom Testimonial & Avatar Styling */
.testimonial {
    transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.avatar-initial {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--teal);
    background-color: rgba(36, 102, 114, .12);
}

/* Mobile Layout Fixes & Responsiveness */
@media(max-width:767px) {

    /* Prevent hero text clipping & fix border collision */
    .hero-content {
        padding: 60px 20px !important;
    }

    .display-title {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        line-height: 1.15 !important;
        word-break: break-word;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .navbar-brand img {
        width: 145px;
    }

    .image-card img {
        height: 390px;
    }

    .trust .item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .project {
        min-height: 370px;
    }

    .page-hero {
        padding: 80px 0 60px;
    }

    .mart .btn-brand,
    .cta .btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}





/* Custom Testimonial & Avatar Styling */
.testimonial {
    transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.avatar-initial {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--teal);
    background-color: rgba(36, 102, 114, .12);
}


/*  services page */


.service-detail-section {
    position: relative;
    overflow: hidden;
}

.service-number {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .8;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: rgba(25, 75, 85, .22);
}

.service-icon {
    color: #f99e0f;
    transition: transform .35s ease;
}

.service-detail-section:hover .service-icon {
    transform: translateY(-5px);
}

.service-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 30px;
}

.service-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-point i {
    color: #f99e0f;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-detail-section .btn {
    transition: all .3s ease;
}

.service-detail-section .btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {

    .service-number {
        font-size: 5rem;
    }

    .service-icon {
        font-size: 2.5rem !important;
    }

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

    .service-detail-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

}




/* ================================
   SERVICES BREADCRUMB
================================= */
.page-hero .breadcrumb {
    font-size: .9rem;
    font-weight: 500;
}

.page-hero .breadcrumb-item a {
    color: #f99e0f;
    transition: color .3s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-hero .breadcrumb-item.active {
    color: #c5d4d6;
}

/* Breadcrumb separator */
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .45);
    content: "/";
    padding-right: .65rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item {
    padding-left: .65rem;
}





